Struct tg_bot_models::Sticker [] [src]

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

This object represents a sticker.

Fields

Unique identifier for this file

Sticker width

Sticker height

Optional. Sticker thumbnail in .webp or .jpg format

Optional. Emoji associated with the sticker

Optional. File size

Trait Implementations

impl Debug for Sticker
[src]

Formats the value using the given formatter.

impl Clone for Sticker
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Sticker
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for Sticker
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more