pub enum MlTargetKind {
BinaryClassification,
MulticlassClassification,
MultilabelClassification,
Regression,
Ranking,
Forecasting,
Clustering,
Generation,
Other,
}Variants§
BinaryClassification
MulticlassClassification
MultilabelClassification
Regression
Ranking
Forecasting
Clustering
Generation
Other
Implementations§
Trait Implementations§
Source§impl Clone for MlTargetKind
impl Clone for MlTargetKind
Source§fn clone(&self) -> MlTargetKind
fn clone(&self) -> MlTargetKind
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 MlTargetKind
impl Debug for MlTargetKind
Source§impl Display for MlTargetKind
impl Display for MlTargetKind
Source§impl FromStr for MlTargetKind
impl FromStr for MlTargetKind
Source§type Err = MlLabelError
type Err = MlLabelError
The associated error which can be returned from parsing.
Source§fn from_str(value: &str) -> Result<MlTargetKind, <MlTargetKind as FromStr>::Err>
fn from_str(value: &str) -> Result<MlTargetKind, <MlTargetKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for MlTargetKind
impl Hash for MlTargetKind
Source§impl Ord for MlTargetKind
impl Ord for MlTargetKind
Source§fn cmp(&self, other: &MlTargetKind) -> Ordering
fn cmp(&self, other: &MlTargetKind) -> 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 MlTargetKind
impl PartialEq for MlTargetKind
Source§fn eq(&self, other: &MlTargetKind) -> bool
fn eq(&self, other: &MlTargetKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlTargetKind
impl PartialOrd for MlTargetKind
impl Copy for MlTargetKind
impl Eq for MlTargetKind
impl StructuralPartialEq for MlTargetKind
Auto Trait Implementations§
impl Freeze for MlTargetKind
impl RefUnwindSafe for MlTargetKind
impl Send for MlTargetKind
impl Sync for MlTargetKind
impl Unpin for MlTargetKind
impl UnsafeUnpin for MlTargetKind
impl UnwindSafe for MlTargetKind
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