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