pub struct StickerKeyword {
pub document_id: i64,
pub keyword: Vec<String>,
}Expand description
Generated from:
stickerKeyword#fcfeb29c document_id:long keyword:Vector<string> = StickerKeywordFields§
§document_id: i64§keyword: Vec<String>Trait Implementations§
Source§impl Clone for StickerKeyword
impl Clone for StickerKeyword
Source§fn clone(&self) -> StickerKeyword
fn clone(&self) -> StickerKeyword
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 StickerKeyword
impl Debug for StickerKeyword
Source§impl Deserializable for StickerKeyword
impl Deserializable for StickerKeyword
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<StickerKeyword> for StickerKeyword
impl From<StickerKeyword> for StickerKeyword
Source§fn from(x: StickerKeyword) -> Self
fn from(x: StickerKeyword) -> Self
Converts to this type from the input type.
Source§impl Identifiable for StickerKeyword
impl Identifiable for StickerKeyword
Source§const CONSTRUCTOR_ID: u32 = 0xfcfeb29c
const CONSTRUCTOR_ID: u32 = 0xfcfeb29c
The constructor ID as specified in the TL schema.
Source§impl PartialEq for StickerKeyword
impl PartialEq for StickerKeyword
Source§impl Serializable for StickerKeyword
impl Serializable for StickerKeyword
Source§impl TryFrom<StickerKeyword> for StickerKeyword
impl TryFrom<StickerKeyword> for StickerKeyword
Source§type Error = StickerKeyword
type Error = StickerKeyword
The type returned in the event of a conversion error.
impl StructuralPartialEq for StickerKeyword
Auto Trait Implementations§
impl Freeze for StickerKeyword
impl RefUnwindSafe for StickerKeyword
impl Send for StickerKeyword
impl Sync for StickerKeyword
impl Unpin for StickerKeyword
impl UnsafeUnpin for StickerKeyword
impl UnwindSafe for StickerKeyword
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