pub struct Call<'a> {
pub from: &'a str,
pub to: &'a str,
pub instruction: CallInstruction<'a>,
}
Expand description
Describes minimal Call request, suitable for urlencoded serialization
Fields§
§from: &'a str
Phone number of source
to: &'a str
Phone number of destination
instruction: CallInstruction<'a>
Call content
Implementations§
Trait Implementations§
Source§impl<'a> Into<TwilioRequest> for Call<'a>
impl<'a> Into<TwilioRequest> for Call<'a>
Source§fn into(self) -> TwilioRequest
fn into(self) -> TwilioRequest
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl<'a> Freeze for Call<'a>
impl<'a> RefUnwindSafe for Call<'a>
impl<'a> Send for Call<'a>
impl<'a> Sync for Call<'a>
impl<'a> Unpin for Call<'a>
impl<'a> UnwindSafe for Call<'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