Struct telexide_fork::model::StickerSet
source · pub struct StickerSet {
pub name: String,
pub title: String,
pub is_animated: bool,
pub contains_masks: bool,
pub stickers: Vec<Sticker>,
pub thumb: Option<PhotoSize>,
}Expand description
This object represents a sticker set.
Fields§
§name: StringSticker set name
title: StringSticker set title
is_animated: boolTrue, if the sticker set contains animated stickers
contains_masks: boolTrue, if the sticker set contains masks
stickers: Vec<Sticker>List of all set stickers
thumb: Option<PhotoSize>Optional. Sticker set thumbnail in the .WEBP or .TGS format
Trait Implementations§
source§impl Clone for StickerSet
impl Clone for StickerSet
source§fn clone(&self) -> StickerSet
fn clone(&self) -> StickerSet
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 StickerSet
impl Debug for StickerSet
source§impl<'de> Deserialize<'de> for StickerSet
impl<'de> Deserialize<'de> for StickerSet
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<StickerSet> for StickerSet
impl PartialEq<StickerSet> for StickerSet
source§fn eq(&self, other: &StickerSet) -> bool
fn eq(&self, other: &StickerSet) -> bool
This method tests for
self and other values to be equal, and is used
by ==.