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