pub enum ReasonCode {
SustainedOutwardDrift,
AbruptSlewViolation,
RecurrentBoundaryGrazing,
EnvelopeViolation,
}Expand description
Reason code qualifying a Boundary grammar state.
Typed reason codes allow operators to distinguish classes of structural behavior without modulation classification (paper Table II).
Variants§
SustainedOutwardDrift
Persistent positive ṙ over W consecutive observations. RF contexts: PA thermal drift, LO aging, slow interference buildup.
AbruptSlewViolation
Abrupt |r̈| > δ_s event. RF contexts: jamming onset, hardware fault, LO phase jump.
RecurrentBoundaryGrazing
Recurrent near-boundary hits ≥ K in window W. RF contexts: cyclic interference, periodic spectral sharing.
EnvelopeViolation
Confirmed ‖r(k)‖ > ρ_eff.
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 · 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
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