[][src]Struct tgbot::methods::SendContact

pub struct SendContact { /* fields omitted */ }

Send phone contacts

Methods

impl SendContact[src]

pub fn new<C: Into<ChatId>, S: Into<String>>(
    chat_id: C,
    phone_number: S,
    first_name: S
) -> Self
[src]

Creates a new SendContact with empty optional parameters

Arguments

  • chat_id - Unique identifier for the target chat
  • 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 disable_notification(self, disable_notification: bool) -> Self[src]

Sends the message silently

Users will receive a notification with no sound

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

If the message is a reply, ID of the original message

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

Additional interface options

Trait Implementations

impl Clone for SendContact[src]

impl Debug for SendContact[src]

impl Method for SendContact[src]

type Response = Message

Type of successful result in API response

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