Struct actix_telegram::types::InlineQueryResultGame[][src]

pub struct InlineQueryResultGame {
    pub type_: 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

Inline keyboard attached to the message

Trait Implementations

impl Debug for InlineQueryResultGame
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations