[][src]Struct tbot::types::input_message_content::Contact

#[must_use]
pub struct Contact<'a> { /* fields omitted */ }

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, last_name: &'a str) -> Self[src]

Configures the last name.

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

Configures the vCard.

Trait Implementations

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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

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.