[][src]Struct rutebot::requests::InputMediaVideo

pub struct InputMediaVideo<'a> {
    pub media: FileKind<'a>,
    pub caption: Option<&'a str>,
    pub parse_mode: Option<ParseMode>,
    pub duration: Option<i64>,
    pub width: Option<i64>,
    pub height: Option<i64>,
    pub supports_streaming: bool,
}

Represents a video to be sent.

Fields

media: FileKind<'a>

File to send

caption: Option<&'a str>

Caption of the photo to be sent, 0-1024 characters

parse_mode: Option<ParseMode>

Send ParseMode::Markdown or ParseMode::Html, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.

duration: Option<i64>

Duration of sent video in seconds

width: Option<i64>

Video width

height: Option<i64>

Video height

supports_streaming: bool

Pass True, if the uploaded video is suitable for streaming.

Methods

impl<'a> InputMediaVideo<'a>[src]

pub fn new(media: FileKind<'a>) -> Self[src]

Trait Implementations

impl<'a> Clone for InputMediaVideo<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for InputMediaVideo<'a>[src]

impl<'a> Serialize for InputMediaVideo<'a>[src]

Auto Trait Implementations

impl<'a> Send for InputMediaVideo<'a>

impl<'a> Sync for InputMediaVideo<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Erased for T