pub enum MlFeatureEncodingKind {
None,
OneHot,
Ordinal,
Label,
Binary,
Hashing,
Token,
Embedding,
Custom,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MlFeatureEncodingKind
impl Clone for MlFeatureEncodingKind
Source§fn clone(&self) -> MlFeatureEncodingKind
fn clone(&self) -> MlFeatureEncodingKind
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 MlFeatureEncodingKind
impl Debug for MlFeatureEncodingKind
Source§impl Display for MlFeatureEncodingKind
impl Display for MlFeatureEncodingKind
Source§impl FromStr for MlFeatureEncodingKind
impl FromStr for MlFeatureEncodingKind
Source§impl Hash for MlFeatureEncodingKind
impl Hash for MlFeatureEncodingKind
Source§impl Ord for MlFeatureEncodingKind
impl Ord for MlFeatureEncodingKind
Source§fn cmp(&self, other: &MlFeatureEncodingKind) -> Ordering
fn cmp(&self, other: &MlFeatureEncodingKind) -> 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 MlFeatureEncodingKind
impl PartialEq for MlFeatureEncodingKind
Source§fn eq(&self, other: &MlFeatureEncodingKind) -> bool
fn eq(&self, other: &MlFeatureEncodingKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlFeatureEncodingKind
impl PartialOrd for MlFeatureEncodingKind
impl Copy for MlFeatureEncodingKind
impl Eq for MlFeatureEncodingKind
impl StructuralPartialEq for MlFeatureEncodingKind
Auto Trait Implementations§
impl Freeze for MlFeatureEncodingKind
impl RefUnwindSafe for MlFeatureEncodingKind
impl Send for MlFeatureEncodingKind
impl Sync for MlFeatureEncodingKind
impl Unpin for MlFeatureEncodingKind
impl UnsafeUnpin for MlFeatureEncodingKind
impl UnwindSafe for MlFeatureEncodingKind
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