[][src]Struct tg_bot_models::Sticker

pub struct Sticker {
    pub file_id: String,
    pub width: i64,
    pub height: i64,
    pub thumb: Option<PhotoSize>,
    pub emoji: Option<String>,
    pub set_name: Option<String>,
    pub mask_position: Option<MaskPosition>,
    pub file_size: Option<i64>,
}

This object represents a sticker.

Fields

file_id: String

Unique identifier for this file

width: i64

Sticker width

height: i64

Sticker height

thumb: Option<PhotoSize>

Optional. Sticker thumbnail in the .webp or .jpg format

emoji: Option<String>

Optional. Emoji associated with the sticker

set_name: Option<String>

Optional. Name of the sticker set to which the sticker belongs

mask_position: Option<MaskPosition>

Optional. For mask stickers, the position where the mask should be placed

file_size: Option<i64>

Optional. File size

Trait Implementations

impl PartialEq<Sticker> for Sticker[src]

impl Clone for Sticker[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialOrd<Sticker> for Sticker[src]

impl Debug for Sticker[src]

impl Serialize for Sticker[src]

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

Auto Trait Implementations

impl Send for Sticker

impl Sync for Sticker

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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