pub enum ServerMessageResponseTransferDestinationRequestDestination {
TransferDestinationAssistant(TransferDestinationAssistant),
TransferDestinationStep(TransferDestinationStep),
TransferDestinationNumber(TransferDestinationNumber),
TransferDestinationSip(TransferDestinationSip),
}Expand description
ServerMessageResponseTransferDestinationRequestDestination : This is the destination you’d like the call to be transferred to. This is the destination you’d like the call to be transferred to.
Variants§
TransferDestinationAssistant(TransferDestinationAssistant)
TransferDestinationStep(TransferDestinationStep)
TransferDestinationNumber(TransferDestinationNumber)
TransferDestinationSip(TransferDestinationSip)
Trait Implementations§
Source§impl Clone for ServerMessageResponseTransferDestinationRequestDestination
impl Clone for ServerMessageResponseTransferDestinationRequestDestination
Source§fn clone(&self) -> ServerMessageResponseTransferDestinationRequestDestination
fn clone(&self) -> ServerMessageResponseTransferDestinationRequestDestination
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ServerMessageResponseTransferDestinationRequestDestination
impl<'de> Deserialize<'de> for ServerMessageResponseTransferDestinationRequestDestination
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 OpenApi for ServerMessageResponseTransferDestinationRequestDestination
impl OpenApi for ServerMessageResponseTransferDestinationRequestDestination
Source§fn openapi() -> OpenApi
fn openapi() -> OpenApi
Return the
openapi::OpenApi instance which can be parsed with serde or served via
OpenAPI visualization tool such as Swagger UI.Source§impl PartialEq for ServerMessageResponseTransferDestinationRequestDestination
impl PartialEq for ServerMessageResponseTransferDestinationRequestDestination
Source§fn eq(
&self,
other: &ServerMessageResponseTransferDestinationRequestDestination,
) -> bool
fn eq( &self, other: &ServerMessageResponseTransferDestinationRequestDestination, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServerMessageResponseTransferDestinationRequestDestination
Auto Trait Implementations§
impl Freeze for ServerMessageResponseTransferDestinationRequestDestination
impl RefUnwindSafe for ServerMessageResponseTransferDestinationRequestDestination
impl Send for ServerMessageResponseTransferDestinationRequestDestination
impl Sync for ServerMessageResponseTransferDestinationRequestDestination
impl Unpin for ServerMessageResponseTransferDestinationRequestDestination
impl UnwindSafe for ServerMessageResponseTransferDestinationRequestDestination
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