pub enum ServerMessageResponseAssistantRequestDestination {
TransferDestinationNumber(TransferDestinationNumber),
TransferDestinationSip(TransferDestinationSip),
}
Expand description
ServerMessageResponseAssistantRequestDestination : This is the destination to transfer the inbound call to. This will immediately transfer without using any assistants. If this is sent, assistantId
, assistant
, squadId
, and squad
are ignored.
This is the destination to transfer the inbound call to. This will immediately transfer without using any assistants. If this is sent, assistantId
, assistant
, squadId
, and squad
are ignored.
Variants§
TransferDestinationNumber(TransferDestinationNumber)
TransferDestinationSip(TransferDestinationSip)
Trait Implementations§
Source§impl Clone for ServerMessageResponseAssistantRequestDestination
impl Clone for ServerMessageResponseAssistantRequestDestination
Source§fn clone(&self) -> ServerMessageResponseAssistantRequestDestination
fn clone(&self) -> ServerMessageResponseAssistantRequestDestination
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 ServerMessageResponseAssistantRequestDestination
impl<'de> Deserialize<'de> for ServerMessageResponseAssistantRequestDestination
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 ServerMessageResponseAssistantRequestDestination
impl PartialEq for ServerMessageResponseAssistantRequestDestination
Source§fn eq(&self, other: &ServerMessageResponseAssistantRequestDestination) -> bool
fn eq(&self, other: &ServerMessageResponseAssistantRequestDestination) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ServerMessageResponseAssistantRequestDestination
Auto Trait Implementations§
impl Freeze for ServerMessageResponseAssistantRequestDestination
impl RefUnwindSafe for ServerMessageResponseAssistantRequestDestination
impl Send for ServerMessageResponseAssistantRequestDestination
impl Sync for ServerMessageResponseAssistantRequestDestination
impl Unpin for ServerMessageResponseAssistantRequestDestination
impl UnwindSafe for ServerMessageResponseAssistantRequestDestination
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