pub struct HorizonPoint {
pub snr_db: f32,
pub drift_rate: f32,
pub detected: bool,
pub detection_latency: u32,
}Expand description
A single point in the semiotic horizon grid.
Records whether the DSFB grammar correctly detects a structural drift at a given (SNR, drift_rate) operating point.
Fields§
§snr_db: f32SNR in dB.
drift_rate: f32Drift rate α (residual norm units per observation).
detected: boolWhether the grammar correctly entered Boundary/Violation within the detection window (true = success, false = missed).
detection_latency: u32Number of observations to first detection (0 if not detected).
Trait Implementations§
Source§impl Clone for HorizonPoint
impl Clone for HorizonPoint
Source§fn clone(&self) -> HorizonPoint
fn clone(&self) -> HorizonPoint
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 HorizonPoint
impl Debug for HorizonPoint
Source§impl PartialEq for HorizonPoint
impl PartialEq for HorizonPoint
impl Copy for HorizonPoint
impl StructuralPartialEq for HorizonPoint
Auto Trait Implementations§
impl Freeze for HorizonPoint
impl RefUnwindSafe for HorizonPoint
impl Send for HorizonPoint
impl Sync for HorizonPoint
impl Unpin for HorizonPoint
impl UnsafeUnpin for HorizonPoint
impl UnwindSafe for HorizonPoint
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