pub enum TransferPlanMessage {
String(String),
CustomMessage(CustomMessage),
}
Expand description
TransferPlanMessage : This is the message the assistant will deliver to the destination party before connecting the customer. Usage: - Used only when mode
is blind-transfer-add-summary-to-sip-header
, warm-transfer-say-message
, warm-transfer-wait-for-operator-to-speak-first-and-then-say-message
, or warm-transfer-experimental
.
This is the message the assistant will deliver to the destination party before connecting the customer. Usage: - Used only when mode
is blind-transfer-add-summary-to-sip-header
, warm-transfer-say-message
, warm-transfer-wait-for-operator-to-speak-first-and-then-say-message
, or warm-transfer-experimental
.
Variants§
String(String)
CustomMessage(CustomMessage)
Trait Implementations§
Source§impl Clone for TransferPlanMessage
impl Clone for TransferPlanMessage
Source§fn clone(&self) -> TransferPlanMessage
fn clone(&self) -> TransferPlanMessage
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 TransferPlanMessage
impl Debug for TransferPlanMessage
Source§impl Default for TransferPlanMessage
impl Default for TransferPlanMessage
Source§impl<'de> Deserialize<'de> for TransferPlanMessage
impl<'de> Deserialize<'de> for TransferPlanMessage
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 TransferPlanMessage
impl PartialEq for TransferPlanMessage
Source§impl Serialize for TransferPlanMessage
impl Serialize for TransferPlanMessage
impl StructuralPartialEq for TransferPlanMessage
Auto Trait Implementations§
impl Freeze for TransferPlanMessage
impl RefUnwindSafe for TransferPlanMessage
impl Send for TransferPlanMessage
impl Sync for TransferPlanMessage
impl Unpin for TransferPlanMessage
impl UnwindSafe for TransferPlanMessage
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