Skip to main content

InlineKeyboardButton

Struct InlineKeyboardButton 

Source
pub struct InlineKeyboardButton {
    pub _text: String,
    pub _url: Option<String>,
    pub _callback_data: Option<String>,
    pub _switch_inline_query: Option<String>,
    pub _switch_inline_query_current_chat: Option<String>,
    pub _callback_game: Option<CallbackGame>,
    pub _pay: Option<bool>,
}
Expand description

This object represents one button of an inline keyboard. You must use exactly one of the optional fields.

Fields§

§_text: String

Label text on the button

§_url: Option<String>

Optional. HTTP url to be opened when button is pressed

§_callback_data: Option<String>

Optional. Data to be sent in a callback query to the bot when button is pressed, 1-64 bytes

§_switch_inline_query: Option<String>

Optional. If set, pressing the button will prompt the user to select one of their chats, open that chat and insert the bot‘s username and the specified inline query in the input field. Can be empty, in which case just the bot’s username will be inserted. Note: This offers an easy way for users to start using your bot in inline mode when they are currently in a private chat with it. Especially useful when combined with switch_pm… actions – in this case the user will be automatically returned to the chat they switched from, skipping the chat selection screen.

§_switch_inline_query_current_chat: Option<String>

Optional. If set, pressing the button will insert the bot‘s username and the specified inline query in the current chat’s input field. Can be empty, in which case only the bot’s username will be inserted. This offers a quick way for the user to open your bot in inline mode in the same chat – good for selecting something from multiple options.

§_callback_game: Option<CallbackGame>

Optional. Description of the game that will be launched when the user presses the button. NOTE: This type of button must always be the first button in the first row.

§_pay: Option<bool>

Optional. Specify True, to send a Pay button. NOTE: This type of button must always be the first button in the first row.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.