pub enum ServerMessageStatusUpdateDestination {
TransferDestinationNumber(TransferDestinationNumber),
TransferDestinationSip(TransferDestinationSip),
}
Expand description
ServerMessageStatusUpdateDestination : This is the destination the call is being transferred to. This is only sent if the status is "forwarding". This is the destination the call is being transferred to. This is only sent if the status is "forwarding".
Variants§
TransferDestinationNumber(TransferDestinationNumber)
TransferDestinationSip(TransferDestinationSip)
Trait Implementations§
Source§impl Clone for ServerMessageStatusUpdateDestination
impl Clone for ServerMessageStatusUpdateDestination
Source§fn clone(&self) -> ServerMessageStatusUpdateDestination
fn clone(&self) -> ServerMessageStatusUpdateDestination
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<'de> Deserialize<'de> for ServerMessageStatusUpdateDestination
impl<'de> Deserialize<'de> for ServerMessageStatusUpdateDestination
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 ServerMessageStatusUpdateDestination
impl PartialEq for ServerMessageStatusUpdateDestination
Source§fn eq(&self, other: &ServerMessageStatusUpdateDestination) -> bool
fn eq(&self, other: &ServerMessageStatusUpdateDestination) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ServerMessageStatusUpdateDestination
Auto Trait Implementations§
impl Freeze for ServerMessageStatusUpdateDestination
impl RefUnwindSafe for ServerMessageStatusUpdateDestination
impl Send for ServerMessageStatusUpdateDestination
impl Sync for ServerMessageStatusUpdateDestination
impl Unpin for ServerMessageStatusUpdateDestination
impl UnwindSafe for ServerMessageStatusUpdateDestination
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