pub struct InlineQueryResultVideo {Show 13 fields
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<ParseMode>,
pub video_width: Option<i64>,
pub video_height: Option<i64>,
pub video_duration: Option<i64>,
pub description: Option<String>,
pub reply_markup: Option<InlineKeyboardMarkup>,
pub input_message_content: Option<InputMessageContent>,
}Fields§
§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 of the result
caption: Option<String>Caption of the video to be sent, 0-1024 characters
parse_mode: Option<ParseMode>Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.
video_width: Option<i64>Video width
video_height: Option<i64>Video height
video_duration: Option<i64>Video duration
description: Option<String>Short description of the result
reply_markup: Option<InlineKeyboardMarkup>Inline keyboard attached to the message
input_message_content: Option<InputMessageContent>Content of the message to be sent
Trait Implementations§
Source§impl Debug for InlineQueryResultVideo
impl Debug for InlineQueryResultVideo
Source§impl From<InlineQueryResultVideo> for InlineQueryResult
impl From<InlineQueryResultVideo> for InlineQueryResult
Source§fn from(video: InlineQueryResultVideo) -> InlineQueryResult
fn from(video: InlineQueryResultVideo) -> InlineQueryResult
Converts to this type from the input type.
Source§impl Serialize for InlineQueryResultVideo
impl Serialize for InlineQueryResultVideo
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for InlineQueryResultVideo
impl RefUnwindSafe for InlineQueryResultVideo
impl Send for InlineQueryResultVideo
impl Sync for InlineQueryResultVideo
impl Unpin for InlineQueryResultVideo
impl UnwindSafe for InlineQueryResultVideo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more