pub enum DeliveryChannel {
Email,
Sms,
Portal,
}Expand description
Decision choices for delivery channel in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
Selects email for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
Sms
Selects sms for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
Portal
Selects portal for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
Trait Implementations§
Source§impl Clone for DeliveryChannel
impl Clone for DeliveryChannel
Source§fn clone(&self) -> DeliveryChannel
fn clone(&self) -> DeliveryChannel
Returns a duplicate 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 Debug for DeliveryChannel
impl Debug for DeliveryChannel
Source§impl<'de> Deserialize<'de> for DeliveryChannel
impl<'de> Deserialize<'de> for DeliveryChannel
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 DeliveryChannel
impl PartialEq for DeliveryChannel
Source§impl Serialize for DeliveryChannel
impl Serialize for DeliveryChannel
impl Copy for DeliveryChannel
impl Eq for DeliveryChannel
impl StructuralPartialEq for DeliveryChannel
Auto Trait Implementations§
impl Freeze for DeliveryChannel
impl RefUnwindSafe for DeliveryChannel
impl Send for DeliveryChannel
impl Sync for DeliveryChannel
impl Unpin for DeliveryChannel
impl UnsafeUnpin for DeliveryChannel
impl UnwindSafe for DeliveryChannel
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