Struct tg_bot_models::InlineQueryResultContact[][src]

pub struct InlineQueryResultContact {
    pub ty: String,
    pub id: String,
    pub phone_number: String,
    pub first_name: String,
    pub last_name: Option<String>,
    pub vcard: Option<String>,
    pub reply_markup: Option<InlineKeyboardMarkup>,
    pub input_message_content: Option<InputMessageContent>,
    pub thumb_url: Option<String>,
    pub thumb_width: Option<i64>,
    pub thumb_height: Option<i64>,
}

Represents a contact with a phone number. By default, this contact will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the contact.

Fields

Type of the result, must be contact

Unique identifier for this result, 1-64 Bytes

Contact's phone number

Contact's first name

Optional. Contact's last name

Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes

Optional. Inline keyboard attached to the message

Optional. Content of the message to be sent instead of the contact

Optional. Url of the thumbnail for the result

Optional. Thumbnail width

Optional. Thumbnail height

Trait Implementations

impl Debug for InlineQueryResultContact
[src]

Formats the value using the given formatter. Read more

impl Clone for InlineQueryResultContact
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InlineQueryResultContact
[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 InlineQueryResultContact
[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