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

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 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 photo. By default, this photo will be sent by the user with optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the photo.

Fields

id: String

Unique identifier for this result, 1-64 Bytes

photo_url: String

A valid URL of the photo. Photo must be in jpeg format. Photo size must not exceed 5MB

thumb_url: String

Url of the thumbnail for the photo

photo_width: Option<i64>

Photo width

photo_height: Option<i64>

Photo height

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 after entities parsing

input_message_content: Option<InputMessageContent>

Content of the message to be sent instead of the photo

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 InlineQueryResultPhoto[src]

impl Debug for InlineQueryResultPhoto[src]

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

impl PartialEq<InlineQueryResultPhoto> for InlineQueryResultPhoto[src]

impl Serialize for InlineQueryResultPhoto[src]

impl StructuralPartialEq for InlineQueryResultPhoto[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: Any + Clone
[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, 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