Struct tg_bot_models::Animation[][src]

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

This object represents an animation file (GIF or H.264/MPEG-4 AVC video without sound).

Fields

Unique file identifier

Video width as defined by sender

Video height as defined by sender

Duration of the video in seconds as defined by sender

Optional. Animation thumbnail as defined by sender

Optional. Original animation filename as defined by sender

Optional. MIME type of the file as defined by sender

Optional. File size

Trait Implementations

impl Debug for Animation
[src]

Formats the value using the given formatter. Read more

impl Clone for Animation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Animation
[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 Animation
[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

Auto Trait Implementations

impl Send for Animation

impl Sync for Animation