pub struct InlineQueryResultVideo {Show 14 fields
pub id: String,
pub video_url: Url,
pub mime_type: Mime,
pub thumb_url: Url,
pub title: String,
pub caption: Option<String>,
pub parse_mode: Option<ParseMode>,
pub caption_entities: Option<Vec<MessageEntity>>,
pub video_width: Option<i32>,
pub video_height: Option<i32>,
pub video_duration: Option<i32>,
pub description: Option<String>,
pub reply_markup: Option<InlineKeyboardMarkup>,
pub input_message_content: Option<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_messaage_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: Url
A valid URL for the embedded video player or video file.
mime_type: Mime
Mime type of the content of video url, text/html
or video/mp4
.
thumb_url: Url
URL of the thumbnail (jpeg only) for the video.
title: String
Title for 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.
caption_entities: Option<Vec<MessageEntity>>
List of special entities that appear in the caption, which can be
specified instead of parse_mode
.
video_width: Option<i32>
Video width.
video_height: Option<i32>
Video height.
video_duration: Option<i32>
Video duration in seconds.
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 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).
Implementations§
Source§impl InlineQueryResultVideo
impl InlineQueryResultVideo
pub fn new<S1, S2>( id: S1, video_url: Url, mime_type: Mime, thumb_url: Url, title: S2, ) -> Self
pub fn id<S>(self, val: S) -> Self
pub fn video_url(self, val: Url) -> Self
pub fn mime_type(self, val: Mime) -> Self
pub fn thumb_url(self, val: Url) -> Self
pub fn title<S>(self, val: S) -> Self
pub fn caption<S>(self, val: S) -> Self
pub fn parse_mode(self, val: ParseMode) -> Self
pub fn caption_entities<C>(self, val: C) -> Selfwhere
C: IntoIterator<Item = MessageEntity>,
pub fn video_width(self, val: i32) -> Self
pub fn video_height(self, val: i32) -> Self
pub fn video_duration(self, val: i32) -> Self
pub fn description<S>(self, val: S) -> Self
pub fn reply_markup(self, val: InlineKeyboardMarkup) -> Self
pub fn input_message_content(self, val: InputMessageContent) -> Self
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 moreSource§impl Debug for InlineQueryResultVideo
impl Debug for InlineQueryResultVideo
Source§impl<'de> Deserialize<'de> for InlineQueryResultVideo
impl<'de> Deserialize<'de> for InlineQueryResultVideo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl From<InlineQueryResultVideo> for InlineQueryResult
impl From<InlineQueryResultVideo> for InlineQueryResult
Source§fn from(original: InlineQueryResultVideo) -> InlineQueryResult
fn from(original: InlineQueryResultVideo) -> InlineQueryResult
Source§impl PartialEq for InlineQueryResultVideo
impl PartialEq for InlineQueryResultVideo
Source§impl Serialize for InlineQueryResultVideo
impl Serialize for InlineQueryResultVideo
impl StructuralPartialEq for InlineQueryResultVideo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Erasable for T
impl<T> Erasable for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more