[][src]Struct carapax::prelude::InlineQueryResultCachedVideo

pub struct InlineQueryResultCachedVideo { /* fields omitted */ }

Link to a video file stored on the Telegram servers

By default, this video file will be sent by the user with an optional caption Alternatively, you can use input_message_content to send a message with the specified content instead of the video

Methods

impl InlineQueryResultCachedVideo[src]

pub fn new<S>(id: S, video_file_id: S, title: S) -> InlineQueryResultCachedVideo where
    S: Into<String>, 
[src]

Creates a new InlineQueryResultCachedVideo with empty optional parameters

Arguments

  • id - Unique identifier for this result, 1-64 bytes
  • video_file_id - A valid file identifier of the video
  • title - Title for the result

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

Short description of the result

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

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

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

Parse mode

pub fn reply_markup<I>(self, reply_markup: I) -> InlineQueryResultCachedVideo where
    I: Into<InlineKeyboardMarkup>, 
[src]

Inline keyboard attached to the message

pub fn input_message_content(
    self,
    input_message_content: InputMessageContent
) -> InlineQueryResultCachedVideo
[src]

Content of the message to be sent instead of the video

Trait Implementations

impl From<InlineQueryResultCachedVideo> for InlineQueryResult[src]

impl Debug for InlineQueryResultCachedVideo[src]

impl Serialize for InlineQueryResultCachedVideo[src]

impl Clone for InlineQueryResultCachedVideo[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, U> Into for T where
    U: From<T>, 
[src]

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

type Owned = T

impl<T> From for T[src]

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