pub struct TimeComplementSettings {
pub min_reflected_time_advantage: f64,
pub min_lr_amplitude_m: f64,
}Expand description
Thresholds for detecting a pair that is more phase-similar under reflected time than under a declared same-time / absolute-sync rule.
Fields§
§min_reflected_time_advantage: f64Minimum reflected-time minus same-time phase-similarity score required
to report the diagnostic. This threshold is in [0, 1]; emitted
advantages are positive and no greater than one.
min_lr_amplitude_m: f64Minimum L−R foot-height amplitude (metres) required before a phase is considered evidence rather than noise.
Trait Implementations§
Source§impl Clone for TimeComplementSettings
impl Clone for TimeComplementSettings
Source§fn clone(&self) -> TimeComplementSettings
fn clone(&self) -> TimeComplementSettings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TimeComplementSettings
impl Debug for TimeComplementSettings
Source§impl<'de> Deserialize<'de> for TimeComplementSettings
impl<'de> Deserialize<'de> for TimeComplementSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TimeComplementSettings
impl RefUnwindSafe for TimeComplementSettings
impl Send for TimeComplementSettings
impl Sync for TimeComplementSettings
impl Unpin for TimeComplementSettings
impl UnsafeUnpin for TimeComplementSettings
impl UnwindSafe for TimeComplementSettings
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