[][src]Struct carapax::prelude::InlineQueryResultCachedMpeg4Gif

pub struct InlineQueryResultCachedMpeg4Gif { /* fields omitted */ }

Link to a video animation (H.264/MPEG-4 AVC video without sound) stored on the Telegram servers

By default, this animated MPEG-4 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 animation

Methods

impl InlineQueryResultCachedMpeg4Gif[src]

pub fn new<S>(id: S, mpeg4_file_id: S) -> InlineQueryResultCachedMpeg4Gif where
    S: Into<String>, 
[src]

Creates a new InlineQueryResultCachedMpeg4Gif with empty optional parameters

Arguments

  • id - Unique identifier for this result, 1-64 bytes
  • mpeg4_file_id - A valid file identifier for the MP4 file

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

Title for the result

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

Caption of the MPEG-4 file to be sent, 0-1024 characters

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

Parse mode

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

Inline keyboard attached to the message

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

Content of the message to be sent instead of the video animation

Trait Implementations

impl From<InlineQueryResultCachedMpeg4Gif> for InlineQueryResult[src]

impl Debug for InlineQueryResultCachedMpeg4Gif[src]

impl Serialize for InlineQueryResultCachedMpeg4Gif[src]

impl Clone for InlineQueryResultCachedMpeg4Gif[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