pub enum Recipient {
Customer(CustomerId),
Staff(StaffId),
Manager(ManagerId),
}Expand description
Decision choices for recipient in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
Customer(CustomerId)
Selects customer for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
Staff(StaffId)
Selects staff for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
Manager(ManagerId)
Selects manager 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<'de> Deserialize<'de> for Recipient
impl<'de> Deserialize<'de> for Recipient
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
impl Eq for Recipient
impl StructuralPartialEq for Recipient
Auto Trait Implementations§
impl Freeze for Recipient
impl RefUnwindSafe for Recipient
impl Send for Recipient
impl Sync for Recipient
impl Unpin for Recipient
impl UnsafeUnpin for Recipient
impl UnwindSafe for Recipient
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