pub enum MlFeatureMissingValuePolicy {
Allow,
Drop,
ImputeMean,
ImputeMedian,
ImputeMode,
ImputeConstant,
Unknown,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MlFeatureMissingValuePolicy
impl Clone for MlFeatureMissingValuePolicy
Source§fn clone(&self) -> MlFeatureMissingValuePolicy
fn clone(&self) -> MlFeatureMissingValuePolicy
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 MlFeatureMissingValuePolicy
impl Debug for MlFeatureMissingValuePolicy
Source§impl FromStr for MlFeatureMissingValuePolicy
impl FromStr for MlFeatureMissingValuePolicy
Source§type Err = MlFeatureError
type Err = MlFeatureError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<MlFeatureMissingValuePolicy, <MlFeatureMissingValuePolicy as FromStr>::Err>
fn from_str( value: &str, ) -> Result<MlFeatureMissingValuePolicy, <MlFeatureMissingValuePolicy as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for MlFeatureMissingValuePolicy
impl Hash for MlFeatureMissingValuePolicy
Source§impl Ord for MlFeatureMissingValuePolicy
impl Ord for MlFeatureMissingValuePolicy
Source§fn cmp(&self, other: &MlFeatureMissingValuePolicy) -> Ordering
fn cmp(&self, other: &MlFeatureMissingValuePolicy) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MlFeatureMissingValuePolicy
impl PartialEq for MlFeatureMissingValuePolicy
Source§fn eq(&self, other: &MlFeatureMissingValuePolicy) -> bool
fn eq(&self, other: &MlFeatureMissingValuePolicy) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlFeatureMissingValuePolicy
impl PartialOrd for MlFeatureMissingValuePolicy
impl Copy for MlFeatureMissingValuePolicy
impl Eq for MlFeatureMissingValuePolicy
impl StructuralPartialEq for MlFeatureMissingValuePolicy
Auto Trait Implementations§
impl Freeze for MlFeatureMissingValuePolicy
impl RefUnwindSafe for MlFeatureMissingValuePolicy
impl Send for MlFeatureMissingValuePolicy
impl Sync for MlFeatureMissingValuePolicy
impl Unpin for MlFeatureMissingValuePolicy
impl UnsafeUnpin for MlFeatureMissingValuePolicy
impl UnwindSafe for MlFeatureMissingValuePolicy
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