pub enum InlineKeyboardButtonType {
CallbackData(String),
CallbackGame,
CopyText(String),
LoginUrl(LoginUrl),
Pay,
SwitchInlineQuery(String),
SwitchInlineQueryChosenChat(SwitchInlineQueryChosenChat),
SwitchInlineQueryCurrentChat(String),
Url(String),
WebApp(WebAppInfo),
}
Expand description
Represents a type of an inline keyboard button.
Variants§
CallbackData(String)
Data to be sent in a callback query to the bot when button is pressed; 1-64 bytes.
CallbackGame
Description of the game that will be launched when the user presses the button.
§Notes
This type of button must always be the first button in the first row.
CopyText(String)
Description of the button that copies the specified text to the clipboard.
LoginUrl(LoginUrl)
An HTTP URL used to automatically authorize the user.
Can be used as a replacement for the Telegram Login Widget.
Pay
SwitchInlineQuery(String)
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.
§Notes
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.
SwitchInlineQueryChosenChat(SwitchInlineQueryChosenChat)
Pressing the button will prompt the user to select one of their chats of the specified type, open that chat and insert the bot username and the specified inline query in the input field.
SwitchInlineQueryCurrentChat(String)
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.
Url(String)
HTTP or tg:// url to be opened when button is pressed.
WebApp(WebAppInfo)
Description of the Web App that will be launched when the user presses the button.
The Web App will be able to send an arbitrary message on behalf
of the user using the method crate::types::AnswerWebAppQuery
.
Available only in private chats between a user and the bot.
Trait Implementations§
Source§impl Clone for InlineKeyboardButtonType
impl Clone for InlineKeyboardButtonType
Source§fn clone(&self) -> InlineKeyboardButtonType
fn clone(&self) -> InlineKeyboardButtonType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more