Trait teloxide_core::payloads::SendContactSetters[][src]

pub trait SendContactSetters: HasPayload<Payload = SendContact> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<ChatId>
, { ... }
fn phone_number<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... }
fn first_name<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... }
fn last_name<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... }
fn vcard<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... }
fn disable_notification(self, value: bool) -> Self { ... }
fn reply_to_message_id(self, value: i32) -> Self { ... }
fn allow_sending_without_reply(self, value: bool) -> Self { ... }
fn reply_markup<T>(self, value: T) -> Self
    where
        T: Into<ReplyMarkup>
, { ... } }

Setters for fields of SendContact

Provided methods

fn chat_id<T>(self, value: T) -> Self where
    T: Into<ChatId>, 
[src]

Setter for chat_id field.

fn phone_number<T>(self, value: T) -> Self where
    T: Into<String>, 
[src]

Setter for phone_number field.

fn first_name<T>(self, value: T) -> Self where
    T: Into<String>, 
[src]

Setter for first_name field.

fn last_name<T>(self, value: T) -> Self where
    T: Into<String>, 
[src]

Setter for last_name field.

fn vcard<T>(self, value: T) -> Self where
    T: Into<String>, 
[src]

Setter for vcard field.

fn disable_notification(self, value: bool) -> Self[src]

Setter for disable_notification field.

fn reply_to_message_id(self, value: i32) -> Self[src]

Setter for reply_to_message_id field.

fn allow_sending_without_reply(self, value: bool) -> Self[src]

Setter for allow_sending_without_reply field.

fn reply_markup<T>(self, value: T) -> Self where
    T: Into<ReplyMarkup>, 
[src]

Setter for reply_markup field.

Loading content...

Implementors

impl<P> SendContactSetters for P where
    P: HasPayload<Payload = SendContact>, 
[src]

Loading content...