Struct tg_bot_models::KeyboardButton[][src]

pub struct KeyboardButton {
    pub text: String,
    pub request_contact: Option<bool>,
    pub request_location: Option<bool>,
}

This object represents one button of the reply keyboard. For simple text buttons String can be used instead of this object to specify text of the button. Optional fields are mutually exclusive.

Fields

Text of the button. If none of the optional fields are used, it will be sent as a message when the button is pressed

Optional. If True, the user's phone number will be sent as a contact when the button is pressed. Available in private chats only

Optional. If True, the user's current location will be sent when the button is pressed. Available in private chats only

Trait Implementations

impl Debug for KeyboardButton
[src]

Formats the value using the given formatter. Read more

impl Clone for KeyboardButton
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for KeyboardButton
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for KeyboardButton
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations