[][src]Struct telexide::api::types::InlineQueryResultVideo

pub struct InlineQueryResultVideo {
    pub id: String,
    pub video_url: String,
    pub thumb_url: String,
    pub mime_type: String,
    pub video_width: Option<i64>,
    pub video_height: Option<i64>,
    pub video_duration: Option<i64>,
    pub description: Option<String>,
    pub title: String,
    pub caption: Option<String>,
    pub input_message_content: Option<InputMessageContent>,
    pub reply_markup: Option<InlineKeyboardMarkup>,
    pub parse_mode: Option<ParseMode>,
    pub caption_entities: Option<Vec<MessageEntity>>,
}

Represents a link to a page containing an embedded video player or a video file. 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.

Fields

id: String

Unique identifier for this result, 1-64 Bytes

video_url: String

A valid URL for the embedded video player or video file

thumb_url: String

URL of the thumbnail (jpeg only) for the video

mime_type: String

Mime type of the content of video url, “text/html” or “video/mp4”

video_width: Option<i64>

Width of the video

video_height: Option<i64>

Height of the video

video_duration: Option<i64>

Duration of the video

description: Option<String>

Short description of the result

title: String

Title of the result

caption: Option<String>

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

input_message_content: Option<InputMessageContent>

Content of the message to be sent instead of the video

reply_markup: Option<InlineKeyboardMarkup>

Inline keyboard attached to the message

parse_mode: Option<ParseMode>

Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message.

caption_entities: Option<Vec<MessageEntity>>

List of special entities that appear in the caption, which can be specified instead of parse_mode

Trait Implementations

impl Clone for InlineQueryResultVideo[src]

impl Debug for InlineQueryResultVideo[src]

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

impl PartialEq<InlineQueryResultVideo> for InlineQueryResultVideo[src]

impl Serialize for InlineQueryResultVideo[src]

impl StructuralPartialEq for InlineQueryResultVideo[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> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.

impl<T> UnsafeAny for T where
    T: Any