Enum MlExperimentStage
pub enum MlExperimentStage {
Exploration,
Baseline,
Tuning,
Candidate,
Validation,
ProductionCandidate,
Archived,
}Variants§
Implementations§
§impl MlExperimentStage
impl MlExperimentStage
Trait Implementations§
§impl Clone for MlExperimentStage
impl Clone for MlExperimentStage
§fn clone(&self) -> MlExperimentStage
fn clone(&self) -> MlExperimentStage
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 MlExperimentStage
impl Debug for MlExperimentStage
§impl Display for MlExperimentStage
impl Display for MlExperimentStage
§impl FromStr for MlExperimentStage
impl FromStr for MlExperimentStage
§type Err = MlExperimentError
type Err = MlExperimentError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<MlExperimentStage, <MlExperimentStage as FromStr>::Err>
fn from_str( value: &str, ) -> Result<MlExperimentStage, <MlExperimentStage as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for MlExperimentStage
impl Hash for MlExperimentStage
§impl Ord for MlExperimentStage
impl Ord for MlExperimentStage
§fn cmp(&self, other: &MlExperimentStage) -> Ordering
fn cmp(&self, other: &MlExperimentStage) -> 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 MlExperimentStage
impl PartialEq for MlExperimentStage
§impl PartialOrd for MlExperimentStage
impl PartialOrd for MlExperimentStage
impl Copy for MlExperimentStage
impl Eq for MlExperimentStage
impl StructuralPartialEq for MlExperimentStage
Auto Trait Implementations§
impl Freeze for MlExperimentStage
impl RefUnwindSafe for MlExperimentStage
impl Send for MlExperimentStage
impl Sync for MlExperimentStage
impl Unpin for MlExperimentStage
impl UnsafeUnpin for MlExperimentStage
impl UnwindSafe for MlExperimentStage
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