pub struct SetSIPURIParams {
pub sipuri: Option<String>,
pub uri: Option<String>,
pub description: Option<String>,
pub callerid_override: Option<String>,
pub callerid_e164: Option<i64>,
}Expand description
- Updates a specific SIP URI if a SIP URI code is provided. - Adds a new SIP URI entry if no SIP URI code is provided.
Parameters for Client::set_sip_uri (wire method setSIPURI).
Fields§
§sipuri: Option<String>ID for a specific SIP URI (Example: 6199 / Leave empty to create a new one)
uri: Option<String>SIP URI (Example: ‘[email protected]’) (required)
description: Option<String>Description for the SIP URI
callerid_override: Option<String>This setting is optional. You can configure a ‘CallerID Number Override’. Your default CallerID number will be changed to the override you have configured here when using this SIP URI.
callerid_e164: Option<i64>If this option is Enabled, then your CallerID will be E164 compliant.
Trait Implementations§
Source§impl Clone for SetSIPURIParams
impl Clone for SetSIPURIParams
Source§fn clone(&self) -> SetSIPURIParams
fn clone(&self) -> SetSIPURIParams
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 SetSIPURIParams
impl Debug for SetSIPURIParams
Source§impl Default for SetSIPURIParams
impl Default for SetSIPURIParams
Source§fn default() -> SetSIPURIParams
fn default() -> SetSIPURIParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetSIPURIParams
impl RefUnwindSafe for SetSIPURIParams
impl Send for SetSIPURIParams
impl Sync for SetSIPURIParams
impl Unpin for SetSIPURIParams
impl UnsafeUnpin for SetSIPURIParams
impl UnwindSafe for SetSIPURIParams
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