[][src]Struct carapax::prelude::SendContact

pub struct SendContact { /* fields omitted */ }

Send phone contacts

Methods

impl SendContact[src]

pub fn new<C, S>(chat_id: C, phone_number: S, first_name: S) -> SendContact where
    C: Into<ChatId>,
    S: Into<String>, 
[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>(self, last_name: S) -> SendContact where
    S: Into<String>, 
[src]

Contact's last name

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

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

pub fn disable_notification(self, disable_notification: bool) -> SendContact[src]

Sends the message silently

Users will receive a notification with no sound

pub fn reply_to_message_id(self, reply_to_message_id: i64) -> SendContact[src]

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

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

Additional interface options

Trait Implementations

impl Debug for SendContact[src]

impl Method for SendContact[src]

type Response = Message

Type of successful result in API response

impl Clone for SendContact[src]

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

Performs copy-assignment from source. Read more

impl Serialize for SendContact[src]

Auto Trait Implementations

impl Send for SendContact

impl Sync for SendContact

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