[][src]Struct tbot::types::inline_query::result::Contact

pub struct Contact<'a> { /* fields omitted */ }

Represents an InlineQueryResultContact.

Methods

impl<'a> Contact<'a>[src]

pub const fn new(phone_number: &'a str, first_name: &'a str) -> Self[src]

Constructs a 'Contact'.

pub fn last_name(self, name: &'a str) -> Self[src]

Configures the last name of the contact.

pub fn vcard(self, vcard: &'a str) -> Self[src]

Configures the contact's additional data.

pub fn thumb(self, thumb: Thumb<'a>) -> Self[src]

Configures the thumb of the contact.

pub fn input_message_content(
    self,
    content: impl Into<InputMessageContent<'a>>
) -> Self
[src]

Configures the content shown after sending the message.

Trait Implementations

impl<'a> Clone for Contact<'a>[src]

impl<'a> PartialEq<Contact<'a>> for Contact<'a>[src]

impl<'a> From<Contact<'a>> for Kind<'a>[src]

impl<'a> Copy for Contact<'a>[src]

impl<'a> Debug for Contact<'a>[src]

impl<'a> Serialize for Contact<'a>[src]

Auto Trait Implementations

impl<'a> Send for Contact<'a>

impl<'a> Unpin for Contact<'a>

impl<'a> Sync for Contact<'a>

impl<'a> UnwindSafe for Contact<'a>

impl<'a> RefUnwindSafe for Contact<'a>

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[src]

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.

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

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

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

impl<T> Erased for T