pub enum Decision {
Pass,
HardBlock,
NeedsHumanApproval,
Unknown,
NotApplicable,
}Expand description
Classifies decision values that drive the booking-readiness workflow.
Variants§
Pass
Routes booking triage work flagged as pass to the right queue, review gate, or agent packet.
HardBlock
Routes booking triage work flagged as hard block to the right queue, review gate, or agent packet.
NeedsHumanApproval
Routes booking triage work flagged as needs human approval to the right queue, review gate, or agent packet.
Unknown
Routes booking triage work flagged as unknown to the right queue, review gate, or agent packet.
NotApplicable
Routes booking triage work flagged as not applicable to the right queue, review gate, or agent packet.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Decision
impl<'de> Deserialize<'de> for Decision
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 Ord for Decision
impl Ord for Decision
Source§impl PartialOrd for Decision
impl PartialOrd for Decision
impl Copy for Decision
impl Eq for Decision
impl StructuralPartialEq for Decision
Auto Trait Implementations§
impl Freeze for Decision
impl RefUnwindSafe for Decision
impl Send for Decision
impl Sync for Decision
impl Unpin for Decision
impl UnsafeUnpin for Decision
impl UnwindSafe for Decision
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