Skip to main content

PhysicalMechanism

Enum PhysicalMechanism 

Source
pub enum PhysicalMechanism {
    PaThermalDrift,
    LoAging,
    PimOnset,
    PhaseNoiseDegradation,
    IntentionalJamming,
    AdjacentChannelInterference,
    FhssTransition,
    AntennaCouplingTransient,
    Unknown,
}
Expand description

A candidate physical mechanism that may explain a grammar state.

These are hypotheses, not attributions. Physical attribution requires deployment-specific calibration data.

Variants§

§

PaThermalDrift

Power amplifier thermal drift (Arrhenius model). Signature: persistent positive ṙ over 100–10,000 symbol periods.

§

LoAging

Local oscillator aging (Allan variance model). Signature: slow monotone frequency offset growth.

§

PimOnset

Passive intermodulation (PIM) onset. Signature: abrupt slew in specific intermod frequency bands.

§

PhaseNoiseDegradation

Phase noise degradation (Leeson’s model). Signature: oscillatory ṙ with growing amplitude.

§

IntentionalJamming

Intentional jamming (J/S ratio model). Signature: abrupt, sustained high-norm residual.

§

AdjacentChannelInterference

Adjacent-channel interference (ACLR violation). Signature: spectral mask approach from neighboring channel.

§

FhssTransition

Frequency-hopping spread-spectrum transition. Signature: abrupt slew with rapid recovery to new baseline.

§

AntennaCouplingTransient

Antenna coupling transient. Signature: brief abrupt slew correlated with antenna switching.

§

Unknown

Unknown mechanism — endoductive regime.

Trait Implementations§

Source§

impl Clone for PhysicalMechanism

Source§

fn clone(&self) -> PhysicalMechanism

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PhysicalMechanism

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for PhysicalMechanism

Source§

fn eq(&self, other: &PhysicalMechanism) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for PhysicalMechanism

Source§

impl Eq for PhysicalMechanism

Source§

impl StructuralPartialEq for PhysicalMechanism

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.