[][src]Struct twilio_async::SendCall

pub struct SendCall<'a> {
    pub call: Call<'a>,
    pub client: &'a Twilio,
}

Fields

call: Call<'a>client: &'a Twilio

Methods

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

pub fn sid(self, sid: &'a str) -> SendCall<'a>[src]

pub fn callerid(self, callerid: &'a str) -> SendCall<'a>[src]

pub fn machine_detection(self, machine_detection: bool) -> SendCall<'a>[src]

pub fn record(self, record: bool) -> SendCall<'a>[src]

pub fn send_digits(self, send_digits: &'a str) -> SendCall<'a>[src]

pub fn status_callback(self, callback: &'a str) -> SendCall<'a>[src]

pub fn callback_event(self, event: CallbackEvent) -> SendCall<'a>[src]

pub fn timeout(self, timeout: &'a str) -> SendCall<'a>[src]

Trait Implementations

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

impl<'a> Execute for SendCall<'a>[src]

impl<'a> TwilioRequest for SendCall<'a>[src]

type Resp = CallResp

Auto Trait Implementations

impl<'a> !RefUnwindSafe for SendCall<'a>

impl<'a> Send for SendCall<'a>

impl<'a> Sync for SendCall<'a>

impl<'a> Unpin for SendCall<'a>

impl<'a> !UnwindSafe for SendCall<'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, 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.