pub struct GetArchivedStickerSets {
pub is_masks: bool,
pub offset_sticker_set_id: i64,
pub limit: i32,
}
Expand description
Returns a list of archived sticker sets
Fields§
§is_masks: bool
Pass true to return mask stickers sets; pass false to return ordinary sticker sets
offset_sticker_set_id: i64
Identifier of the sticker set from which to return the result
limit: i32
Maximum number of sticker sets to return
Trait Implementations§
Source§impl Clone for GetArchivedStickerSets
impl Clone for GetArchivedStickerSets
Source§fn clone(&self) -> GetArchivedStickerSets
fn clone(&self) -> GetArchivedStickerSets
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 GetArchivedStickerSets
impl Debug for GetArchivedStickerSets
Source§impl<'de> Deserialize<'de> for GetArchivedStickerSets
impl<'de> Deserialize<'de> for GetArchivedStickerSets
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Method for GetArchivedStickerSets
impl Method for GetArchivedStickerSets
Auto Trait Implementations§
impl Freeze for GetArchivedStickerSets
impl RefUnwindSafe for GetArchivedStickerSets
impl Send for GetArchivedStickerSets
impl Sync for GetArchivedStickerSets
impl Unpin for GetArchivedStickerSets
impl UnwindSafe for GetArchivedStickerSets
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