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