pub struct TrendingStickerSets {
pub total_count: i32,
pub sets: Vec<StickerSetInfo>,
pub is_premium: bool,
}Expand description
Represents a list of trending sticker sets
Fields§
§total_count: i32Approximate total number of trending sticker sets
sets: Vec<StickerSetInfo>List of trending sticker sets
True, if the list contains sticker sets with premium stickers
Trait Implementations§
Source§impl Clone for TrendingStickerSets
impl Clone for TrendingStickerSets
Source§fn clone(&self) -> TrendingStickerSets
fn clone(&self) -> TrendingStickerSets
Returns a copy 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 TrendingStickerSets
impl Debug for TrendingStickerSets
Source§impl Default for TrendingStickerSets
impl Default for TrendingStickerSets
Source§fn default() -> TrendingStickerSets
fn default() -> TrendingStickerSets
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrendingStickerSets
impl<'de> Deserialize<'de> for TrendingStickerSets
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 PartialEq for TrendingStickerSets
impl PartialEq for TrendingStickerSets
Source§impl Serialize for TrendingStickerSets
impl Serialize for TrendingStickerSets
impl StructuralPartialEq for TrendingStickerSets
Auto Trait Implementations§
impl Freeze for TrendingStickerSets
impl RefUnwindSafe for TrendingStickerSets
impl Send for TrendingStickerSets
impl Sync for TrendingStickerSets
impl Unpin for TrendingStickerSets
impl UnwindSafe for TrendingStickerSets
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