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