pub struct NominalFeature {
pub feature_index: usize,
pub feature_name: String,
pub healthy_mean: f64,
pub healthy_std: f64,
pub rho: f64,
pub healthy_observations: usize,
pub analyzable: bool,
}Fields§
§feature_index: usize§feature_name: String§healthy_mean: f64§healthy_std: f64§rho: f64§healthy_observations: usize§analyzable: boolTrait Implementations§
Source§impl Clone for NominalFeature
impl Clone for NominalFeature
Source§fn clone(&self) -> NominalFeature
fn clone(&self) -> NominalFeature
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 NominalFeature
impl Debug for NominalFeature
Auto Trait Implementations§
impl Freeze for NominalFeature
impl RefUnwindSafe for NominalFeature
impl Send for NominalFeature
impl Sync for NominalFeature
impl Unpin for NominalFeature
impl UnsafeUnpin for NominalFeature
impl UnwindSafe for NominalFeature
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