[][src]Enum rtdlib::types::InlineKeyboardButtonType

pub enum InlineKeyboardButtonType {
    Buy(InlineKeyboardButtonTypeBuy),
    Callback(InlineKeyboardButtonTypeCallback),
    CallbackGame(InlineKeyboardButtonTypeCallbackGame),
    LoginUrl(InlineKeyboardButtonTypeLoginUrl),
    SwitchInline(InlineKeyboardButtonTypeSwitchInline),
    Url(InlineKeyboardButtonTypeUrl),
    // some variants omitted
}

Describes the type of an inline keyboard button

Variants

A button to buy something. This button must be in the first column and row of the keyboard and can be attached only to a message with content of the type messageInvoice

A button that sends a special callback query to a bot

A button with a game that sends a special callback query to a bot. This button must be in the first column and row of the keyboard and can be attached only to a message with content of the type messageGame

A button that opens a specified URL and automatically logs in in current user if they allowed to do that

A button that forces an inline query to the bot to be inserted in the input field

A button that opens a specified URL

Implementations

impl InlineKeyboardButtonType[src]

pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self>[src]

pub fn is_buy(&self) -> bool[src]

pub fn is_callback(&self) -> bool[src]

pub fn is_callback_game(&self) -> bool[src]

pub fn is_login_url(&self) -> bool[src]

pub fn is_switch_inline(&self) -> bool[src]

pub fn is_url(&self) -> bool[src]

pub fn on_buy<F: FnOnce(&InlineKeyboardButtonTypeBuy)>(&self, fnc: F) -> &Self[src]

pub fn on_callback<F: FnOnce(&InlineKeyboardButtonTypeCallback)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn on_callback_game<F: FnOnce(&InlineKeyboardButtonTypeCallbackGame)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn on_login_url<F: FnOnce(&InlineKeyboardButtonTypeLoginUrl)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn on_switch_inline<F: FnOnce(&InlineKeyboardButtonTypeSwitchInline)>(
    &self,
    fnc: F
) -> &Self
[src]

pub fn on_url<F: FnOnce(&InlineKeyboardButtonTypeUrl)>(&self, fnc: F) -> &Self[src]

pub fn as_buy(&self) -> Option<&InlineKeyboardButtonTypeBuy>[src]

pub fn as_callback(&self) -> Option<&InlineKeyboardButtonTypeCallback>[src]

pub fn as_callback_game(&self) -> Option<&InlineKeyboardButtonTypeCallbackGame>[src]

pub fn as_login_url(&self) -> Option<&InlineKeyboardButtonTypeLoginUrl>[src]

pub fn as_switch_inline(&self) -> Option<&InlineKeyboardButtonTypeSwitchInline>[src]

pub fn as_url(&self) -> Option<&InlineKeyboardButtonTypeUrl>[src]

pub fn buy<T: AsRef<InlineKeyboardButtonTypeBuy>>(t: T) -> Self[src]

pub fn callback<T: AsRef<InlineKeyboardButtonTypeCallback>>(t: T) -> Self[src]

pub fn callback_game<T: AsRef<InlineKeyboardButtonTypeCallbackGame>>(
    t: T
) -> Self
[src]

pub fn login_url<T: AsRef<InlineKeyboardButtonTypeLoginUrl>>(t: T) -> Self[src]

pub fn switch_inline<T: AsRef<InlineKeyboardButtonTypeSwitchInline>>(
    t: T
) -> Self
[src]

pub fn url<T: AsRef<InlineKeyboardButtonTypeUrl>>(t: T) -> Self[src]

Trait Implementations

impl AsRef<InlineKeyboardButtonType> for InlineKeyboardButtonType[src]

impl Clone for InlineKeyboardButtonType[src]

impl Debug for InlineKeyboardButtonType[src]

impl Default for InlineKeyboardButtonType[src]

impl<'de> Deserialize<'de> for InlineKeyboardButtonType[src]

impl RObject for InlineKeyboardButtonType[src]

impl Serialize for InlineKeyboardButtonType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.