[][src]Struct tgbot::types::InlineQueryResultContact

pub struct InlineQueryResultContact { /* fields omitted */ }

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

Methods

impl InlineQueryResultContact[src]

pub fn new<I, P, N>(id: I, phone_number: P, first_name: N) -> Self where
    I: Into<String>,
    P: Into<String>,
    N: Into<String>, 
[src]

Creates a new InlineQueryResultContact with empty optional parameters

Arguments

  • id - Unique identifier for this result, 1-64 bytes
  • phone_number - Contact's phone number
  • first_name - Contact's first name

pub fn last_name<S: Into<String>>(self, last_name: S) -> Self[src]

Contact's last name

pub fn vcard<S: Into<String>>(self, vcard: S) -> Self[src]

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

pub fn reply_markup<I: Into<InlineKeyboardMarkup>>(
    self,
    reply_markup: I
) -> Self
[src]

Inline keyboard attached to the message

pub fn input_message_content<C: Into<InputMessageContent>>(
    self,
    input_message_content: C
) -> Self
[src]

Content of the message to be sent instead of the contact

pub fn thumb_url<S: Into<String>>(self, thumb_url: S) -> Self[src]

Url of the thumbnail for the result

pub fn thumb_width(self, thumb_width: Integer) -> Self[src]

Thumbnail width

pub fn thumb_height(self, thumb_height: Integer) -> Self[src]

Thumbnail height

Trait Implementations

impl Clone for InlineQueryResultContact[src]

impl Debug for InlineQueryResultContact[src]

impl From<InlineQueryResultContact> for InlineQueryResult[src]

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