pub enum MlFeatureTransformKind {
Normalize,
Standardize,
Bucketize,
OneHotEncode,
Tokenize,
Embed,
Impute,
Clip,
Log,
Custom,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MlFeatureTransformKind
impl Clone for MlFeatureTransformKind
Source§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 moreSource§impl Debug for MlFeatureTransformKind
impl Debug for MlFeatureTransformKind
Source§impl Display for MlFeatureTransformKind
impl Display for MlFeatureTransformKind
Source§impl FromStr for MlFeatureTransformKind
impl FromStr for MlFeatureTransformKind
Source§impl Hash for MlFeatureTransformKind
impl Hash for MlFeatureTransformKind
Source§impl Ord for MlFeatureTransformKind
impl Ord for MlFeatureTransformKind
Source§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
Source§impl PartialEq for MlFeatureTransformKind
impl PartialEq for MlFeatureTransformKind
Source§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