Struct tg_bot_models::InlineQueryResultPhoto[][src]

pub struct InlineQueryResultPhoto {
    pub ty: String,
    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<String>,
    pub reply_markup: Option<InlineKeyboardMarkup>,
    pub input_message_content: Option<InputMessageContent>,
}

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

Type of the result, must be photo

Unique identifier for this result, 1-64 bytes

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

URL of the thumbnail for the photo

Optional. Width of the photo

Optional. Height of the photo

Optional. Title for the result

Optional. Short description of the result

Optional. Caption of the photo to be sent, 0-200 characters

Optional. Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.

Optional. Inline keyboard attached to the message

Optional. Content of the message to be sent instead of the photo

Trait Implementations

impl Debug for InlineQueryResultPhoto
[src]

Formats the value using the given formatter. Read more

impl Clone for InlineQueryResultPhoto
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InlineQueryResultPhoto
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for InlineQueryResultPhoto
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations