[][src]Struct carapax::prelude::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<S>(id: S, phone_number: S, first_name: S) -> InlineQueryResultContact where
    S: 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>(self, last_name: S) -> InlineQueryResultContact where
    S: Into<String>, 
[src]

Contact's last name

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

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

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

Inline keyboard attached to the message

pub fn input_message_content(
    self,
    input_message_content: InputMessageContent
) -> InlineQueryResultContact
[src]

Content of the message to be sent instead of the contact

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

Url of the thumbnail for the result

pub fn thumb_width(self, thumb_width: i64) -> InlineQueryResultContact[src]

Thumbnail width

pub fn thumb_height(self, thumb_height: i64) -> InlineQueryResultContact[src]

Thumbnail height

Trait Implementations

impl From<InlineQueryResultContact> for InlineQueryResult[src]

impl Debug for InlineQueryResultContact[src]

impl Clone for InlineQueryResultContact[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for InlineQueryResultContact[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T