[][src]Struct carapax::prelude::types::InputMediaVideo

pub struct InputMediaVideo { /* fields omitted */ }

Video to be sent

Methods

impl InputMediaVideo[src]

pub fn new<S>(media: S) -> InputMediaVideo where
    S: Into<String>, 
[src]

Creates a new InputMediaVideo with empty optional parameters

Arguments

  • media - Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name

pub fn thumb<S>(self, thumb: S) -> InputMediaVideo where
    S: Into<String>, 
[src]

Set a thumbnail

The thumbnail should be in JPEG format and less than 200 kB in size A thumbnail‘s width and height should not exceed 90 Ignored if the file is not uploaded using multipart/form-data Thumbnails can’t be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>

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

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

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

Set parse mode

pub fn width(self, width: i64) -> InputMediaVideo[src]

Set width

pub fn height(self, height: i64) -> InputMediaVideo[src]

Set height

pub fn duration(self, duration: i64) -> InputMediaVideo[src]

Set duration

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

Pass True, if the uploaded video is suitable for streaming

Trait Implementations

impl From<InputMediaVideo> for MediaGroupItem[src]

impl From<InputMediaVideo> for InputMedia[src]

impl Serialize for InputMediaVideo[src]

impl Debug for InputMediaVideo[src]

impl Clone for InputMediaVideo[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

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

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