[][src]Struct tgbot::types::Animation

pub struct Animation {
    pub file_id: String,
    pub file_unique_id: String,
    pub width: Integer,
    pub height: Integer,
    pub duration: Integer,
    pub thumb: Option<PhotoSize>,
    pub file_name: Option<String>,
    pub mime_type: Option<String>,
    pub file_size: Option<Integer>,
}

An animation file (GIF or H.264/MPEG-4 AVC video without sound)

Fields

file_id: String

Identifier for this file, which can be used to download or reuse the file

file_unique_id: String

Unique identifier for this file

It is supposed to be the same over time and for different bots. Can't be used to download or reuse the file.

width: Integer

Animation width as defined by sender

height: Integer

Animation height as defined by sender

duration: Integer

Duration of the video in seconds as defined by sender

thumb: Option<PhotoSize>

Animation thumbnail as defined by sender

file_name: Option<String>

Original animation filename as defined by sender

mime_type: Option<String>

MIME type of the file as defined by sender

file_size: Option<Integer>

File size

Trait Implementations

impl Clone for Animation[src]

impl Debug for Animation[src]

impl<'de> Deserialize<'de> for Animation[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> 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.