Enum MlFeatureMissingValuePolicy
pub enum MlFeatureMissingValuePolicy {
Allow,
Drop,
ImputeMean,
ImputeMedian,
ImputeMode,
ImputeConstant,
Unknown,
}Variants§
Implementations§
Trait Implementations§
§impl Clone for MlFeatureMissingValuePolicy
impl Clone for MlFeatureMissingValuePolicy
§fn clone(&self) -> MlFeatureMissingValuePolicy
fn clone(&self) -> MlFeatureMissingValuePolicy
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 more§impl Debug for MlFeatureMissingValuePolicy
impl Debug for MlFeatureMissingValuePolicy
§impl Display for MlFeatureMissingValuePolicy
impl Display for MlFeatureMissingValuePolicy
§impl FromStr for MlFeatureMissingValuePolicy
impl FromStr for MlFeatureMissingValuePolicy
§type Err = MlFeatureError
type Err = MlFeatureError
The associated error which can be returned from parsing.
§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 more§impl Hash for MlFeatureMissingValuePolicy
impl Hash for MlFeatureMissingValuePolicy
§impl Ord for MlFeatureMissingValuePolicy
impl Ord for MlFeatureMissingValuePolicy
§fn cmp(&self, other: &MlFeatureMissingValuePolicy) -> Ordering
fn cmp(&self, other: &MlFeatureMissingValuePolicy) -> Ordering
1.21.0 · 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
§impl PartialEq for MlFeatureMissingValuePolicy
impl PartialEq for MlFeatureMissingValuePolicy
§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