pub enum DenialReason {
CapacityUnavailable,
PolicyHardStop,
MissingRequiredInformation,
RequiresHumanReview,
}Expand description
Negative or escalation availability evidence reasons.
Variants§
Source capacity data shows no safe space/service availability.
PolicyHardStop
A deterministic policy rule blocks the requested booking path.
MissingRequiredInformation
Staff/customer information is incomplete, so the workflow cannot infer availability.
RequiresHumanReview
The adapter found ambiguity that requires staff or manager review.
Trait Implementations§
Source§impl Clone for DenialReason
impl Clone for DenialReason
Source§fn clone(&self) -> DenialReason
fn clone(&self) -> DenialReason
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 DenialReason
impl Debug for DenialReason
Source§impl<'de> Deserialize<'de> for DenialReason
impl<'de> Deserialize<'de> for DenialReason
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 DenialReason
impl PartialEq for DenialReason
Source§impl Serialize for DenialReason
impl Serialize for DenialReason
impl Copy for DenialReason
impl Eq for DenialReason
impl StructuralPartialEq for DenialReason
Auto Trait Implementations§
impl Freeze for DenialReason
impl RefUnwindSafe for DenialReason
impl Send for DenialReason
impl Sync for DenialReason
impl Unpin for DenialReason
impl UnsafeUnpin for DenialReason
impl UnwindSafe for DenialReason
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