Enum MlFeatureScalingKind
pub enum MlFeatureScalingKind {
None,
MinMax,
Standard,
Robust,
UnitNorm,
Log,
Custom,
}Variants§
Implementations§
Trait Implementations§
§impl Clone for MlFeatureScalingKind
impl Clone for MlFeatureScalingKind
§fn clone(&self) -> MlFeatureScalingKind
fn clone(&self) -> MlFeatureScalingKind
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 MlFeatureScalingKind
impl Debug for MlFeatureScalingKind
§impl Display for MlFeatureScalingKind
impl Display for MlFeatureScalingKind
§impl FromStr for MlFeatureScalingKind
impl FromStr for MlFeatureScalingKind
§type Err = MlFeatureError
type Err = MlFeatureError
The associated error which can be returned from parsing.
§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 more§impl Hash for MlFeatureScalingKind
impl Hash for MlFeatureScalingKind
§impl Ord for MlFeatureScalingKind
impl Ord for MlFeatureScalingKind
§fn cmp(&self, other: &MlFeatureScalingKind) -> Ordering
fn cmp(&self, other: &MlFeatureScalingKind) -> 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 MlFeatureScalingKind
impl PartialEq for MlFeatureScalingKind
§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