pub enum MlFeatureScalingKind {
None,
MinMax,
Standard,
Robust,
UnitNorm,
Log,
Custom,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MlFeatureScalingKind
impl Clone for MlFeatureScalingKind
Source§fn clone(&self) -> MlFeatureScalingKind
fn clone(&self) -> MlFeatureScalingKind
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 MlFeatureScalingKind
impl Debug for MlFeatureScalingKind
Source§impl Display for MlFeatureScalingKind
impl Display for MlFeatureScalingKind
Source§impl FromStr for MlFeatureScalingKind
impl FromStr for MlFeatureScalingKind
Source§type Err = MlFeatureError
type Err = MlFeatureError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<MlFeatureScalingKind, <MlFeatureScalingKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<MlFeatureScalingKind, <MlFeatureScalingKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for MlFeatureScalingKind
impl Hash for MlFeatureScalingKind
Source§impl Ord for MlFeatureScalingKind
impl Ord for MlFeatureScalingKind
Source§fn cmp(&self, other: &MlFeatureScalingKind) -> Ordering
fn cmp(&self, other: &MlFeatureScalingKind) -> 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 MlFeatureScalingKind
impl PartialEq for MlFeatureScalingKind
Source§fn eq(&self, other: &MlFeatureScalingKind) -> bool
fn eq(&self, other: &MlFeatureScalingKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlFeatureScalingKind
impl PartialOrd for MlFeatureScalingKind
impl Copy for MlFeatureScalingKind
impl Eq for MlFeatureScalingKind
impl StructuralPartialEq for MlFeatureScalingKind
Auto Trait Implementations§
impl Freeze for MlFeatureScalingKind
impl RefUnwindSafe for MlFeatureScalingKind
impl Send for MlFeatureScalingKind
impl Sync for MlFeatureScalingKind
impl Unpin for MlFeatureScalingKind
impl UnsafeUnpin for MlFeatureScalingKind
impl UnwindSafe for MlFeatureScalingKind
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