pub enum Reason {
ReservationCanceled,
ServiceNotRendered,
ManagerApprovedAdjustment,
}Expand description
Decision choices for reason in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
ReservationCanceled
Uses reservation canceled as source-grounded evidence for the deterministic decision.
ServiceNotRendered
Uses service not rendered as source-grounded evidence for the deterministic decision.
ManagerApprovedAdjustment
Uses manager approved adjustment as source-grounded evidence for the deterministic decision.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Reason
impl<'de> Deserialize<'de> for Reason
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 Copy for Reason
impl Eq for Reason
impl StructuralPartialEq for Reason
Auto Trait Implementations§
impl Freeze for Reason
impl RefUnwindSafe for Reason
impl Send for Reason
impl Sync for Reason
impl Unpin for Reason
impl UnsafeUnpin for Reason
impl UnwindSafe for Reason
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