pub struct SetCallerIDFilteringParams {
pub filter: Option<String>,
pub callerid: Option<String>,
pub did: Option<String>,
pub routing: Option<Routing>,
pub failover_unreachable: Option<Routing>,
pub failover_busy: Option<Routing>,
pub failover_noanswer: Option<Routing>,
pub note: Option<String>,
}Expand description
Parameters for Client::set_caller_id_filtering (wire method setCallerIDFiltering).
Fields§
§filter: Option<String>§callerid: Option<String>§did: Option<String>§routing: Option<Routing>§failover_unreachable: Option<Routing>§failover_busy: Option<Routing>§failover_noanswer: Option<Routing>§note: Option<String>Trait Implementations§
Source§impl Clone for SetCallerIDFilteringParams
impl Clone for SetCallerIDFilteringParams
Source§fn clone(&self) -> SetCallerIDFilteringParams
fn clone(&self) -> SetCallerIDFilteringParams
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 SetCallerIDFilteringParams
impl Debug for SetCallerIDFilteringParams
Source§impl Default for SetCallerIDFilteringParams
impl Default for SetCallerIDFilteringParams
Source§fn default() -> SetCallerIDFilteringParams
fn default() -> SetCallerIDFilteringParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetCallerIDFilteringParams
impl RefUnwindSafe for SetCallerIDFilteringParams
impl Send for SetCallerIDFilteringParams
impl Sync for SetCallerIDFilteringParams
impl Unpin for SetCallerIDFilteringParams
impl UnsafeUnpin for SetCallerIDFilteringParams
impl UnwindSafe for SetCallerIDFilteringParams
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