pub struct AdaptiveThresholdSnapshot {
pub energy_baseline: f32,
pub flux_baseline: f32,
pub dynamic_threshold: f32,
}Expand description
Snapshot of the adaptive baseline and threshold state.
Fields§
§energy_baseline: f32Current exponentially weighted baseline for energy.
flux_baseline: f32Current exponentially weighted baseline for spectral flux.
dynamic_threshold: f32Current dynamic decision threshold used by the detector.
Trait Implementations§
Source§impl Clone for AdaptiveThresholdSnapshot
impl Clone for AdaptiveThresholdSnapshot
Source§fn clone(&self) -> AdaptiveThresholdSnapshot
fn clone(&self) -> AdaptiveThresholdSnapshot
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 AdaptiveThresholdSnapshot
impl Debug for AdaptiveThresholdSnapshot
Source§impl Default for AdaptiveThresholdSnapshot
impl Default for AdaptiveThresholdSnapshot
Source§fn default() -> AdaptiveThresholdSnapshot
fn default() -> AdaptiveThresholdSnapshot
Returns the “default value” for a type. Read more
impl Copy for AdaptiveThresholdSnapshot
Auto Trait Implementations§
impl Freeze for AdaptiveThresholdSnapshot
impl RefUnwindSafe for AdaptiveThresholdSnapshot
impl Send for AdaptiveThresholdSnapshot
impl Sync for AdaptiveThresholdSnapshot
impl Unpin for AdaptiveThresholdSnapshot
impl UnsafeUnpin for AdaptiveThresholdSnapshot
impl UnwindSafe for AdaptiveThresholdSnapshot
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