Struct telegram_typings::InlineKeyboardMarkup [] [src]

pub struct InlineKeyboardMarkup {
    pub inline_keyboard: Vec<Vec<Box<InlineKeyboardButton>>>,
}

This object represents an inline keyboard that appears right next to the message it belongs to. See https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating

Fields

Array of button rows, each represented by an Array of InlineKeyboardButton objects See https://core.telegram.org/bots/api#inlinekeyboardbutton

Trait Implementations

impl Debug for InlineKeyboardMarkup
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for InlineKeyboardMarkup
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations