Struct tg_bot_models::InlineQueryResultArticle[][src]

pub struct InlineQueryResultArticle {
    pub ty: String,
    pub id: String,
    pub title: String,
    pub input_message_content: InputMessageContent,
    pub reply_markup: Option<InlineKeyboardMarkup>,
    pub url: Option<String>,
    pub hide_url: Option<bool>,
    pub description: Option<String>,
    pub thumb_url: Option<String>,
    pub thumb_width: Option<i64>,
    pub thumb_height: Option<i64>,
}

Represents a link to an article or web page.

Fields

Type of the result, must be article

Unique identifier for this result, 1-64 Bytes

Title of the result

Content of the message to be sent

Optional. Inline keyboard attached to the message

Optional. URL of the result

Optional. Pass True, if you don't want the URL to be shown in the message

Optional. Short description of the result

Optional. Url of the thumbnail for the result

Optional. Thumbnail width

Optional. Thumbnail height

Trait Implementations

impl Debug for InlineQueryResultArticle
[src]

Formats the value using the given formatter. Read more

impl Clone for InlineQueryResultArticle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InlineQueryResultArticle
[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 InlineQueryResultArticle
[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