pub struct FavedStickers {
pub hash: i64,
pub packs: Vec<StickerPack>,
pub stickers: Vec<Document>,
}Expand description
Generated from:
messages.favedStickers#2cb51097 hash:long packs:Vector<StickerPack> stickers:Vector<Document> = messages.FavedStickersFields§
§hash: i64§packs: Vec<StickerPack>§stickers: Vec<Document>Trait Implementations§
Source§impl Clone for FavedStickers
impl Clone for FavedStickers
Source§fn clone(&self) -> FavedStickers
fn clone(&self) -> FavedStickers
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 FavedStickers
impl Debug for FavedStickers
Source§impl Deserializable for FavedStickers
impl Deserializable for FavedStickers
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<FavedStickers> for FavedStickers
impl From<FavedStickers> for FavedStickers
Source§fn from(x: FavedStickers) -> Self
fn from(x: FavedStickers) -> Self
Converts to this type from the input type.
Source§impl Identifiable for FavedStickers
impl Identifiable for FavedStickers
Source§const CONSTRUCTOR_ID: u32 = 0x2cb51097
const CONSTRUCTOR_ID: u32 = 0x2cb51097
The constructor ID as specified in the TL schema.
Source§impl PartialEq for FavedStickers
impl PartialEq for FavedStickers
Source§impl Serializable for FavedStickers
impl Serializable for FavedStickers
Source§impl TryFrom<FavedStickers> for FavedStickers
impl TryFrom<FavedStickers> for FavedStickers
Source§type Error = FavedStickers
type Error = FavedStickers
The type returned in the event of a conversion error.
impl StructuralPartialEq for FavedStickers
Auto Trait Implementations§
impl Freeze for FavedStickers
impl RefUnwindSafe for FavedStickers
impl Send for FavedStickers
impl Sync for FavedStickers
impl Unpin for FavedStickers
impl UnsafeUnpin for FavedStickers
impl UnwindSafe for FavedStickers
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