Enum telegram::schema::InputEncryptedFile []

pub enum InputEncryptedFile {
    inputEncryptedFileEmpty,
    inputEncryptedFileUploaded {
        id: i64,
        parts: i32,
        md5_checksum: String,
        key_fingerprint: i32,
    },
    inputEncryptedFile {
        id: i64,
        access_hash: i64,
    },
    inputEncryptedFileBigUploaded {
        id: i64,
        parts: i32,
        key_fingerprint: i32,
    },
}

Variants

Fields of inputEncryptedFileUploaded

Fields of inputEncryptedFile

Fields of inputEncryptedFileBigUploaded

Trait Implementations

impl Debug for InputEncryptedFile
[src]

Formats the value using the given formatter.

impl Serialize for InputEncryptedFile

Serialize to the passed buffer.