Struct telegram_bot_ars::types::Sticker
source · pub struct Sticker {
pub file_id: String,
pub file_unique_id: String,
pub width: i64,
pub height: i64,
pub thumb: Option<PhotoSize>,
pub emoji: Option<String>,
pub set_name: Option<String>,
pub file_size: Option<i64>,
}Expand description
This object represents a sticker.
Fields§
§file_id: StringIdentifier for this file, which can be used to download or reuse the file.
file_unique_id: StringUnique identifier for this file, which is supposed to be the same over time and for different bots. Can’t be used to download or reuse the file.
width: i64Sticker width.
height: i64Sticker height.
thumb: Option<PhotoSize>Sticker thumbnail in .webp or .jpg format.
emoji: Option<String>Emoji associated with the sticker.
set_name: Option<String>The name of the sticker set this sticker belongs to.
file_size: Option<i64>File size.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Sticker
impl<'de> Deserialize<'de> for Sticker
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<Sticker, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Sticker, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialOrd<Sticker> for Sticker
impl PartialOrd<Sticker> for Sticker
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more