Struct telegram_typings::VideoNote [] [src]

pub struct VideoNote {
    pub file_id: String,
    pub length: i64,
    pub duration: i64,
    pub thumb: Option<Box<PhotoSize>>,
    pub file_size: Option<i64>,
}

This object represents a video message (available in Telegram apps as of v.4.0). See https://telegram.org/blog/video-messages-and-telescope

Fields

Unique identifier for this file

Video width and height as defined by sender

Duration of the video in seconds as defined by sender

Video thumbnail

File size

Trait Implementations

impl Debug for VideoNote
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for VideoNote
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for VideoNote

impl Sync for VideoNote