Struct telegram_typings::InlineQueryResultGame [] [src]

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

Represents a Game. See https://core.telegram.org/bots/api#games

Fields

Type of the result, must be game

Unique identifier for this result, 1-64 bytes

Short name of the game

Inline keyboard attached to the message See https://core.telegram.org/bots/api/bots#inline-keyboards-and-on-the-fly-updating

Trait Implementations

impl Debug for InlineQueryResultGame
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for InlineQueryResultGame
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations