pub enum EnvelopeMode {
Fixed,
Widening,
Tightening,
RegimeSwitched,
Aggregate,
}Expand description
Envelope operating mode.
Variants§
Fixed
Fixed radius ρ = const. Standard in-lock steady-state.
Widening
Widening: EMA-smoothed expansion toward ρ_max during acquisition /
AGC transients. Rate controlled by widen_alpha (EMA coefficient).
Tightening
Tightening: EMA-smoothed contraction toward ρ_base after a fault clears or channel conditions improve.
RegimeSwitched
Regime-switched: the radius snaps between two pre-set levels depending on the active RF regime. Maps naturally to burst-mode (preamble vs. payload) and TDMA boundary crossings.
Aggregate
Aggregate: takes the maximum of all other_rho values provided.
Used when multiple envelope constraints are simultaneously active
(e.g., regulatory mask + link-budget margin + observed-noise floor).
Trait Implementations§
Source§impl Clone for EnvelopeMode
impl Clone for EnvelopeMode
Source§fn clone(&self) -> EnvelopeMode
fn clone(&self) -> EnvelopeMode
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 EnvelopeMode
impl Debug for EnvelopeMode
Source§impl PartialEq for EnvelopeMode
impl PartialEq for EnvelopeMode
impl Copy for EnvelopeMode
impl Eq for EnvelopeMode
impl StructuralPartialEq for EnvelopeMode
Auto Trait Implementations§
impl Freeze for EnvelopeMode
impl RefUnwindSafe for EnvelopeMode
impl Send for EnvelopeMode
impl Sync for EnvelopeMode
impl Unpin for EnvelopeMode
impl UnsafeUnpin for EnvelopeMode
impl UnwindSafe for EnvelopeMode
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