Struct telegram_typings::Video [] [src]

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

This object represents a video file.

Fields

Unique identifier for this file

Video width as defined by sender

Video height as defined by sender

Duration of the video in seconds as defined by sender

Video thumbnail

Mime type of a file as defined by sender

File size

Trait Implementations

impl Debug for Video
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Video
[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 Video

impl Sync for Video