pub struct FeatureSigns {
pub feature_index: usize,
pub feature_name: String,
pub drift: Vec<f64>,
pub slew: Vec<f64>,
pub drift_threshold: f64,
pub slew_threshold: f64,
}Fields§
§feature_index: usize§feature_name: String§drift: Vec<f64>§slew: Vec<f64>§drift_threshold: f64§slew_threshold: f64Trait Implementations§
Source§impl Clone for FeatureSigns
impl Clone for FeatureSigns
Source§fn clone(&self) -> FeatureSigns
fn clone(&self) -> FeatureSigns
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 FeatureSigns
impl Debug for FeatureSigns
Auto Trait Implementations§
impl Freeze for FeatureSigns
impl RefUnwindSafe for FeatureSigns
impl Send for FeatureSigns
impl Sync for FeatureSigns
impl Unpin for FeatureSigns
impl UnsafeUnpin for FeatureSigns
impl UnwindSafe for FeatureSigns
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