pub trait CanSendContact<'p, 'f, 'l> {
    fn contact<P, F>(
        &self,
        phone_number: P,
        first_name: F
    ) -> SendContact<'p, 'f, 'l>
    where
        P: Into<Cow<'p, str>>,
        F: Into<Cow<'f, str>>
; }
Expand description

Send phone contact.

Required Methods§

Implementors§