pub enum Subject {
ReservationDeposit(Id),
ReservationBalance(Id),
CustomerAccount(CustomerId),
}Expand description
Decision choices for subject in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
ReservationDeposit(Id)
Selects reservation deposit for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
ReservationBalance(Id)
Selects reservation balance for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
CustomerAccount(CustomerId)
Selects customer account 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 Subject
impl<'de> Deserialize<'de> for Subject
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 Subject
impl StructuralPartialEq for Subject
Auto Trait Implementations§
impl Freeze for Subject
impl RefUnwindSafe for Subject
impl Send for Subject
impl Sync for Subject
impl Unpin for Subject
impl UnsafeUnpin for Subject
impl UnwindSafe for Subject
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