pub enum CallInstruction<'a> {
Twiml(&'a str),
Url(&'a str),
}Expand description
Call instruction.
Variants§
Twiml(&'a str)
Provides xml with Twiml instructions
Url(&'a str)
Provides URL pointing to xml file with Twiml instructions
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for CallInstruction<'a>
impl<'a> RefUnwindSafe for CallInstruction<'a>
impl<'a> Send for CallInstruction<'a>
impl<'a> Sync for CallInstruction<'a>
impl<'a> Unpin for CallInstruction<'a>
impl<'a> UnwindSafe for CallInstruction<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more