Struct tg_bot_models::InlineQueryResultGame[][src]

pub struct InlineQueryResultGame {
    pub ty: String,
    pub id: String,
    pub game_short_name: String,
    pub reply_markup: Option<InlineKeyboardMarkup>,
}

Represents a Game.

Fields

Type of the result, must be game

Unique identifier for this result, 1-64 bytes

Short name of the game

Optional. Inline keyboard attached to the message

Trait Implementations

impl Debug for InlineQueryResultGame
[src]

Formats the value using the given formatter. Read more

impl Clone for InlineQueryResultGame
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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