Enum MlFeatureTransformKind
pub enum MlFeatureTransformKind {
Normalize,
Standardize,
Bucketize,
OneHotEncode,
Tokenize,
Embed,
Impute,
Clip,
Log,
Custom,
}Variants§
Implementations§
Trait Implementations§
§impl Clone for MlFeatureTransformKind
impl Clone for MlFeatureTransformKind
§fn clone(&self) -> MlFeatureTransformKind
fn clone(&self) -> MlFeatureTransformKind
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 MlFeatureTransformKind
impl Debug for MlFeatureTransformKind
§impl Display for MlFeatureTransformKind
impl Display for MlFeatureTransformKind
§impl FromStr for MlFeatureTransformKind
impl FromStr for MlFeatureTransformKind
§type Err = MlFeatureError
type Err = MlFeatureError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<MlFeatureTransformKind, <MlFeatureTransformKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<MlFeatureTransformKind, <MlFeatureTransformKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for MlFeatureTransformKind
impl Hash for MlFeatureTransformKind
§impl Ord for MlFeatureTransformKind
impl Ord for MlFeatureTransformKind
§fn cmp(&self, other: &MlFeatureTransformKind) -> Ordering
fn cmp(&self, other: &MlFeatureTransformKind) -> 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 MlFeatureTransformKind
impl PartialEq for MlFeatureTransformKind
§impl PartialOrd for MlFeatureTransformKind
impl PartialOrd for MlFeatureTransformKind
impl Copy for MlFeatureTransformKind
impl Eq for MlFeatureTransformKind
impl StructuralPartialEq for MlFeatureTransformKind
Auto Trait Implementations§
impl Freeze for MlFeatureTransformKind
impl RefUnwindSafe for MlFeatureTransformKind
impl Send for MlFeatureTransformKind
impl Sync for MlFeatureTransformKind
impl Unpin for MlFeatureTransformKind
impl UnsafeUnpin for MlFeatureTransformKind
impl UnwindSafe for MlFeatureTransformKind
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