pub struct StructuralSignature {
pub dominant_drift_direction: DriftDirection,
pub peak_slew_magnitude: f64,
pub duration_windows: u64,
pub signal_correlation: f64,
}Expand description
Structural signature of an episode
Fields§
§dominant_drift_direction: DriftDirection§peak_slew_magnitude: f64§duration_windows: u64§signal_correlation: f64Trait Implementations§
Source§impl Clone for StructuralSignature
impl Clone for StructuralSignature
Source§fn clone(&self) -> StructuralSignature
fn clone(&self) -> StructuralSignature
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 StructuralSignature
impl Debug for StructuralSignature
Source§impl PartialEq for StructuralSignature
impl PartialEq for StructuralSignature
Source§fn eq(&self, other: &StructuralSignature) -> bool
fn eq(&self, other: &StructuralSignature) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StructuralSignature
impl StructuralPartialEq for StructuralSignature
Auto Trait Implementations§
impl Freeze for StructuralSignature
impl RefUnwindSafe for StructuralSignature
impl Send for StructuralSignature
impl Sync for StructuralSignature
impl Unpin for StructuralSignature
impl UnsafeUnpin for StructuralSignature
impl UnwindSafe for StructuralSignature
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