pub enum ReasonCode {
Admissible,
BoundaryApproach,
SustainedOutwardDrift,
AbruptSlewViolation,
RecurrentBoundaryGrazing,
EnvelopeViolation,
DriftWithRecovery,
SingleCrossing,
}Expand description
Grammar reason codes — Paper §5.5 Table
Variants§
Admissible
Normal operation — no structural concern
BoundaryApproach
Approaching SLO boundary — monitoring recommended
SustainedOutwardDrift
Memory leak, latency creep, cache degradation, dependency slowdown
AbruptSlewViolation
Crash, spike, exception storm, deployment regression, cascading timeout
RecurrentBoundaryGrazing
Periodic load saturation, GC pressure, cron-triggered spikes
EnvelopeViolation
Confirmed SLO breach — actionable incident
DriftWithRecovery
Outward drift followed by self-correction
SingleCrossing
Transient single-step boundary touch — dismissed by persistence gate
Trait Implementations§
Source§impl Clone for ReasonCode
impl Clone for ReasonCode
Source§fn clone(&self) -> ReasonCode
fn clone(&self) -> ReasonCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReasonCode
impl Debug for ReasonCode
Source§impl PartialEq for ReasonCode
impl PartialEq for ReasonCode
Source§fn eq(&self, other: &ReasonCode) -> bool
fn eq(&self, other: &ReasonCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ReasonCode
impl Eq for ReasonCode
impl StructuralPartialEq for ReasonCode
Auto Trait Implementations§
impl Freeze for ReasonCode
impl RefUnwindSafe for ReasonCode
impl Send for ReasonCode
impl Sync for ReasonCode
impl Unpin for ReasonCode
impl UnsafeUnpin for ReasonCode
impl UnwindSafe for ReasonCode
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