[][src]Enum tbot::types::input_file::StickerForStickerSet

pub enum StickerForStickerSet<'a> {
    Png(PngSticker<'a>),
    Tgs(TgsSticker<'a>),
}

Represents a sticker that can be added to a sticker set.

Variants

Png(PngSticker<'a>)

A PNG sticker.

Tgs(TgsSticker<'a>)

A TGS (animated) sticker.

Implementations

impl<'a> StickerForStickerSet<'a>[src]

pub fn is_png(&self) -> bool[src]

Returns true if self is of variant Png.

pub fn expect_png(self) -> PngSticker<'a> where
    Self: Debug
[src]

Unwraps the value, yielding the content of Png.

Panics

Panics if the value is not Png, with a panic message including the content of self.

pub fn png(self) -> Option<PngSticker<'a>>[src]

Returns Some if self is of variant Png, and None otherwise.

pub fn is_tgs(&self) -> bool[src]

Returns true if self is of variant Tgs.

pub fn expect_tgs(self) -> TgsSticker<'a> where
    Self: Debug
[src]

Unwraps the value, yielding the content of Tgs.

Panics

Panics if the value is not Tgs, with a panic message including the content of self.

pub fn tgs(self) -> Option<TgsSticker<'a>>[src]

Returns Some if self is of variant Tgs, and None otherwise.

Trait Implementations

impl<'a> Clone for StickerForStickerSet<'a>[src]

impl<'a> Copy for StickerForStickerSet<'a>[src]

impl<'a> Debug for StickerForStickerSet<'a>[src]

impl<'a> Eq for StickerForStickerSet<'a>[src]

impl<'a> From<PngSticker<'a>> for StickerForStickerSet<'a>[src]

impl<'a> From<TgsSticker<'a>> for StickerForStickerSet<'a>[src]

impl<'a> Hash for StickerForStickerSet<'a>[src]

impl<'a> PartialEq<StickerForStickerSet<'a>> for StickerForStickerSet<'a>[src]

impl<'a> StructuralEq for StickerForStickerSet<'a>[src]

impl<'a> StructuralPartialEq for StickerForStickerSet<'a>[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> 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> WithSubscriber for T[src]