[][src]Struct twiml::Gather

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

Methods

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

pub fn say<S: Into<Say<'a>>>(self, say: S) -> Self[src]

pub fn play<P: Into<Play<'a>>>(self, play: P) -> Self[src]

pub fn redirect<R: Into<Redirect<'a>>>(self, redirect: R) -> Self[src]

pub fn method(self, method: Method) -> Self[src]

pub fn finish_on_key(self, key: char) -> Self[src]

pub fn timeout(self, timeout: usize) -> Self[src]

Trait Implementations

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

impl<'a> Default for Gather<'a>[src]

impl<'a> Twiml for Gather<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Gather<'a>

impl<'a> Send for Gather<'a>

impl<'a> Sync for Gather<'a>

impl<'a> Unpin for Gather<'a>

impl<'a> UnwindSafe for Gather<'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.