Struct telegram_bot_ars::types::InlineQueryResultPhoto
source · pub struct InlineQueryResultPhoto {
pub id: String,
pub photo_url: String,
pub thumb_url: String,
pub photo_width: Option<i64>,
pub photo_height: Option<i64>,
pub title: Option<String>,
pub description: Option<String>,
pub caption: Option<String>,
pub parse_mode: Option<ParseMode>,
pub reply_markup: Option<InlineKeyboardMarkup>,
pub input_message_content: Option<InputMessageContent>,
}Fields§
§id: StringUnique identifier for this result, 1-64 Bytes
photo_url: StringA valid URL of the photo. Photo must be in jpeg format. Photo size must not exceed 5MB
thumb_url: StringUrl of the thumbnail for the result
photo_width: Option<i64>Width of the photo
photo_height: Option<i64>Height of hte photo
title: Option<String>Title of the result
description: Option<String>Short description of the result
caption: Option<String>Caption of the photo 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.
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 InlineQueryResultPhoto
impl Debug for InlineQueryResultPhoto
source§impl From<InlineQueryResultPhoto> for InlineQueryResult
impl From<InlineQueryResultPhoto> for InlineQueryResult
source§fn from(photo: InlineQueryResultPhoto) -> InlineQueryResult
fn from(photo: InlineQueryResultPhoto) -> InlineQueryResult
Converts to this type from the input type.
source§impl Serialize for InlineQueryResultPhoto
impl Serialize for InlineQueryResultPhoto
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