[][src]Enum actix_telegram::types::InputFile

pub enum InputFile {
    Memory {
        name: String,
        source: Box<dyn Read + Send>,
        len: Option<u64>,
    },
    Disk {
        path: String,
    },
}

Variants

Memory

Fields of Memory

name: Stringsource: Box<dyn Read + Send>len: Option<u64>
Disk

Fields of Disk

path: String

Trait Implementations

impl<'a> From<&'a CertAndKey> for InputFile
[src]

impl<'a> From<&'a Cert> for InputFile
[src]

impl Debug for InputFile
[src]

impl Serialize for InputFile
[src]

Auto Trait Implementations

impl Send for InputFile

impl !Sync for InputFile

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T