pub struct InlineQueryResultVideo {Show 14 fields
pub type_tl: String,
pub id: String,
pub video_url: String,
pub mime_type: String,
pub thumb_url: String,
pub title: String,
pub caption: Option<String>,
pub parse_mode: Option<String>,
pub video_width: Option<i64>,
pub video_height: Option<i64>,
pub video_duration: Option<i64>,
pub description: Option<String>,
pub reply_markup: Option<Box<InlineKeyboardMarkup>>,
pub input_message_content: Option<Box<InputMessageContent>>,
}Expand description
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§
§type_tl: StringType of the result, must be video
id: StringUnique identifier for this result, 1-64 bytes
video_url: StringA valid URL for the embedded video player or video file
mime_type: StringMime type of the content of video url, “text/html” or “video/mp4”
thumb_url: StringURL of the thumbnail (jpeg only) for the video
title: StringTitle for the result
caption: Option<String>Caption of the video to be sent, 0-200 characters
parse_mode: Option<String>Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption. See https://core.telegram.org/bots/api#markdown-style See https://core.telegram.org/bots/api#html-style See https://core.telegram.org/bots/api#formatting-options
video_width: Option<i64>Video width
video_height: Option<i64>Video height
video_duration: Option<i64>Video duration in seconds
description: Option<String>Short description of the result
reply_markup: Option<Box<InlineKeyboardMarkup>>Inline keyboard attached to the message See https://core.telegram.org/bots/api/bots#inline-keyboards-and-on-the-fly-updating
input_message_content: Option<Box<InputMessageContent>>Content of the message to be sent instead of the video. This field is required if InlineQueryResultVideo is used to send an HTML-page as a result (e.g., a YouTube video).
Trait Implementations§
Source§impl Clone for InlineQueryResultVideo
impl Clone for InlineQueryResultVideo
Source§fn clone(&self) -> InlineQueryResultVideo
fn clone(&self) -> InlineQueryResultVideo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more