Struct tg_bot_models::Document[][src]

pub struct Document {
    pub file_id: String,
    pub thumb: Option<PhotoSize>,
    pub file_name: Option<String>,
    pub mime_type: Option<String>,
    pub file_size: Option<i64>,
}

This object represents a general file (as opposed to photos, voice messages and audio files).

Fields

Unique file identifier

Optional. Document thumbnail as defined by sender

Optional. Original filename as defined by sender

Optional. MIME type of the file as defined by sender

Optional. File size

Trait Implementations

impl Debug for Document
[src]

Formats the value using the given formatter. Read more

impl Clone for Document
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Sync for Document