pub enum SipVerbTrue {
Refer,
Bye,
Dial,
}
Expand description
This specifies the SIP verb to use while transferring the call. - ‘refer’: Uses SIP REFER to transfer the call (default) - ‘bye’: Ends current call with SIP BYE - ‘dial’: Uses SIP DIAL to transfer the call
Variants§
Trait Implementations§
Source§impl Clone for SipVerbTrue
impl Clone for SipVerbTrue
Source§fn clone(&self) -> SipVerbTrue
fn clone(&self) -> SipVerbTrue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SipVerbTrue
impl Debug for SipVerbTrue
Source§impl Default for SipVerbTrue
impl Default for SipVerbTrue
Source§fn default() -> SipVerbTrue
fn default() -> SipVerbTrue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SipVerbTrue
impl<'de> Deserialize<'de> for SipVerbTrue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SipVerbTrue
impl Hash for SipVerbTrue
Source§impl Ord for SipVerbTrue
impl Ord for SipVerbTrue
Source§fn cmp(&self, other: &SipVerbTrue) -> Ordering
fn cmp(&self, other: &SipVerbTrue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SipVerbTrue
impl PartialEq for SipVerbTrue
Source§impl PartialOrd for SipVerbTrue
impl PartialOrd for SipVerbTrue
Source§impl Serialize for SipVerbTrue
impl Serialize for SipVerbTrue
impl Copy for SipVerbTrue
impl Eq for SipVerbTrue
impl StructuralPartialEq for SipVerbTrue
Auto Trait Implementations§
impl Freeze for SipVerbTrue
impl RefUnwindSafe for SipVerbTrue
impl Send for SipVerbTrue
impl Sync for SipVerbTrue
impl Unpin for SipVerbTrue
impl UnwindSafe for SipVerbTrue
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