Enum MlFeatureEncodingKind
pub enum MlFeatureEncodingKind {
None,
OneHot,
Ordinal,
Label,
Binary,
Hashing,
Token,
Embedding,
Custom,
}Variants§
Implementations§
Trait Implementations§
§impl Clone for MlFeatureEncodingKind
impl Clone for MlFeatureEncodingKind
§fn clone(&self) -> MlFeatureEncodingKind
fn clone(&self) -> MlFeatureEncodingKind
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 MlFeatureEncodingKind
impl Debug for MlFeatureEncodingKind
§impl Display for MlFeatureEncodingKind
impl Display for MlFeatureEncodingKind
§impl FromStr for MlFeatureEncodingKind
impl FromStr for MlFeatureEncodingKind
§type Err = MlFeatureError
type Err = MlFeatureError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<MlFeatureEncodingKind, <MlFeatureEncodingKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<MlFeatureEncodingKind, <MlFeatureEncodingKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for MlFeatureEncodingKind
impl Hash for MlFeatureEncodingKind
§impl Ord for MlFeatureEncodingKind
impl Ord for MlFeatureEncodingKind
§fn cmp(&self, other: &MlFeatureEncodingKind) -> Ordering
fn cmp(&self, other: &MlFeatureEncodingKind) -> 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 MlFeatureEncodingKind
impl PartialEq for MlFeatureEncodingKind
§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