pub struct SetIVRParams {
pub ivr: Option<String>,
pub name: Option<String>,
pub recording: Option<i64>,
pub timeout: Option<i64>,
pub language: Option<String>,
pub voicemailsetup: Option<i64>,
pub choices: Option<String>,
}Expand description
Parameters for Client::set_ivr (wire method setIVR).
Fields§
§ivr: Option<String>§name: Option<String>§recording: Option<i64>§timeout: Option<i64>§language: Option<String>§voicemailsetup: Option<i64>§choices: Option<String>Trait Implementations§
Source§impl Clone for SetIVRParams
impl Clone for SetIVRParams
Source§fn clone(&self) -> SetIVRParams
fn clone(&self) -> SetIVRParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SetIVRParams
impl Debug for SetIVRParams
Source§impl Default for SetIVRParams
impl Default for SetIVRParams
Source§fn default() -> SetIVRParams
fn default() -> SetIVRParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetIVRParams
impl RefUnwindSafe for SetIVRParams
impl Send for SetIVRParams
impl Sync for SetIVRParams
impl Unpin for SetIVRParams
impl UnsafeUnpin for SetIVRParams
impl UnwindSafe for SetIVRParams
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