[][src]Struct teloxide::types::InputMediaVideo

#[non_exhaustive]pub struct InputMediaVideo {
    pub media: InputFile,
    pub thumb: Option<InputFile>,
    pub caption: Option<String>,
    pub parse_mode: Option<ParseMode>,
    pub width: Option<u16>,
    pub height: Option<u16>,
    pub duration: Option<u16>,
    pub supports_streaming: Option<bool>,
}

Represents a video to be sent.

The official docs.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
media: InputFilethumb: Option<InputFile>

Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail‘s width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data.

caption: Option<String>

Caption of the video to be sent, 0-1024 characters.

parse_mode: Option<ParseMode>

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

width: Option<u16>

Video width.

height: Option<u16>

Video height.

duration: Option<u16>

Video duration.

supports_streaming: Option<bool>

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

Implementations

impl InputMediaVideo[src]

pub fn new(media: InputFile) -> Self[src]

pub fn media(self, val: InputFile) -> Self[src]

pub fn thumb(self, val: InputFile) -> Self[src]

pub fn caption<S>(self, val: S) -> Self where
    S: Into<String>, 
[src]

pub fn parse_mode(self, val: ParseMode) -> Self[src]

pub fn width(self, val: u16) -> Self[src]

pub fn height(self, val: u16) -> Self[src]

pub fn duration(self, val: u16) -> Self[src]

pub fn supports_streaming(self, val: bool) -> Self[src]

Trait Implementations

impl Clone for InputMediaVideo[src]

impl Debug for InputMediaVideo[src]

impl<'de> Deserialize<'de> for InputMediaVideo[src]

impl Eq for InputMediaVideo[src]

impl Hash for InputMediaVideo[src]

impl PartialEq<InputMediaVideo> for InputMediaVideo[src]

impl Serialize for InputMediaVideo[src]

impl StructuralEq for InputMediaVideo[src]

impl StructuralPartialEq for InputMediaVideo[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.