pub enum CallDestination {
TransferDestinationNumber(TransferDestinationNumber),
TransferDestinationSip(TransferDestinationSip),
}
Expand description
CallDestination : This is the destination where the call ended up being transferred to. If the call was not transferred, this will be empty. This is the destination where the call ended up being transferred to. If the call was not transferred, this will be empty.
Variants§
TransferDestinationNumber(TransferDestinationNumber)
TransferDestinationSip(TransferDestinationSip)
Trait Implementations§
Source§impl Clone for CallDestination
impl Clone for CallDestination
Source§fn clone(&self) -> CallDestination
fn clone(&self) -> CallDestination
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 CallDestination
impl Debug for CallDestination
Source§impl Default for CallDestination
impl Default for CallDestination
Source§impl<'de> Deserialize<'de> for CallDestination
impl<'de> Deserialize<'de> for CallDestination
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 PartialEq for CallDestination
impl PartialEq for CallDestination
Source§impl Serialize for CallDestination
impl Serialize for CallDestination
impl StructuralPartialEq for CallDestination
Auto Trait Implementations§
impl Freeze for CallDestination
impl RefUnwindSafe for CallDestination
impl Send for CallDestination
impl Sync for CallDestination
impl Unpin for CallDestination
impl UnwindSafe for CallDestination
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