[][src]Struct telexide::model::StickerSet

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>,
}

This object represents a sticker set.

Fields

name: String

Sticker set name

title: String

Sticker set title

is_animated: bool

True, if the sticker set contains animated stickers

contains_masks: bool

True, 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

impl Clone for StickerSet[src]

impl Debug for StickerSet[src]

impl<'de> Deserialize<'de> for StickerSet[src]

impl PartialEq<StickerSet> for StickerSet[src]

impl Serialize for StickerSet[src]

impl StructuralPartialEq for StickerSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any