pub struct SetCallParkingParams {
pub callparking: Option<i64>,
pub name: Option<String>,
pub timeout: Option<i64>,
pub music: Option<String>,
pub failover: Option<String>,
pub language: Option<String>,
pub destination: Option<String>,
pub delay: Option<i64>,
}Expand description
Parameters for Client::set_call_parking (wire method setCallParking).
Fields§
§callparking: Option<i64>§name: Option<String>§timeout: Option<i64>§music: Option<String>§failover: Option<String>§language: Option<String>§destination: Option<String>§delay: Option<i64>Trait Implementations§
Source§impl Clone for SetCallParkingParams
impl Clone for SetCallParkingParams
Source§fn clone(&self) -> SetCallParkingParams
fn clone(&self) -> SetCallParkingParams
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 SetCallParkingParams
impl Debug for SetCallParkingParams
Source§impl Default for SetCallParkingParams
impl Default for SetCallParkingParams
Source§fn default() -> SetCallParkingParams
fn default() -> SetCallParkingParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetCallParkingParams
impl RefUnwindSafe for SetCallParkingParams
impl Send for SetCallParkingParams
impl Sync for SetCallParkingParams
impl Unpin for SetCallParkingParams
impl UnsafeUnpin for SetCallParkingParams
impl UnwindSafe for SetCallParkingParams
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