pub struct DocumentVariant {Show 13 fields
pub variation_type: Option<i32>,
pub rule: Option<Rule>,
pub title: Option<String>,
pub snippet: Vec<String>,
pub recent_changes: Option<String>,
pub auto_translation: Vec<TranslatedText>,
pub offer: Vec<Offer>,
pub channel_id: Option<i64>,
pub child: Vec<Document>,
pub decoration: Vec<Document>,
pub image: Vec<Image>,
pub category_id: Vec<String>,
pub subtitle: Option<String>,
}Fields§
§variation_type: Option<i32>§rule: Option<Rule>§title: Option<String>§snippet: Vec<String>§recent_changes: Option<String>§auto_translation: Vec<TranslatedText>§offer: Vec<Offer>§channel_id: Option<i64>§child: Vec<Document>§decoration: Vec<Document>§image: Vec<Image>§category_id: Vec<String>§subtitle: Option<String>Implementations§
Source§impl DocumentVariant
impl DocumentVariant
Sourcepub fn variation_type(&self) -> i32
pub fn variation_type(&self) -> i32
Returns the value of variation_type, or the default value if variation_type is unset.
Sourcepub fn title(&self) -> &str
pub fn title(&self) -> &str
Returns the value of title, or the default value if title is unset.
Sourcepub fn recent_changes(&self) -> &str
pub fn recent_changes(&self) -> &str
Returns the value of recent_changes, or the default value if recent_changes is unset.
Sourcepub fn channel_id(&self) -> i64
pub fn channel_id(&self) -> i64
Returns the value of channel_id, or the default value if channel_id is unset.
Trait Implementations§
Source§impl Clone for DocumentVariant
impl Clone for DocumentVariant
Source§fn clone(&self) -> DocumentVariant
fn clone(&self) -> DocumentVariant
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DocumentVariant
impl Debug for DocumentVariant
Source§impl Default for DocumentVariant
impl Default for DocumentVariant
Source§impl Message for DocumentVariant
impl Message for DocumentVariant
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for DocumentVariant
impl PartialEq for DocumentVariant
impl StructuralPartialEq for DocumentVariant
Auto Trait Implementations§
impl Freeze for DocumentVariant
impl RefUnwindSafe for DocumentVariant
impl Send for DocumentVariant
impl Sync for DocumentVariant
impl Unpin for DocumentVariant
impl UnwindSafe for DocumentVariant
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more