pub enum EvolutionOutcome {
Improved,
Neutral,
Regressed,
FailedToEvaluate,
}Variants§
Trait Implementations§
Source§impl Clone for EvolutionOutcome
impl Clone for EvolutionOutcome
Source§fn clone(&self) -> EvolutionOutcome
fn clone(&self) -> EvolutionOutcome
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 EvolutionOutcome
impl Debug for EvolutionOutcome
Source§impl<'de> Deserialize<'de> for EvolutionOutcome
impl<'de> Deserialize<'de> for EvolutionOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for EvolutionOutcome
impl Ord for EvolutionOutcome
Source§fn cmp(&self, other: &EvolutionOutcome) -> Ordering
fn cmp(&self, other: &EvolutionOutcome) -> 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 EvolutionOutcome
impl PartialEq for EvolutionOutcome
Source§fn eq(&self, other: &EvolutionOutcome) -> bool
fn eq(&self, other: &EvolutionOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EvolutionOutcome
impl PartialOrd for EvolutionOutcome
Source§impl Serialize for EvolutionOutcome
impl Serialize for EvolutionOutcome
impl Copy for EvolutionOutcome
impl Eq for EvolutionOutcome
impl StructuralPartialEq for EvolutionOutcome
Auto Trait Implementations§
impl Freeze for EvolutionOutcome
impl RefUnwindSafe for EvolutionOutcome
impl Send for EvolutionOutcome
impl Sync for EvolutionOutcome
impl Unpin for EvolutionOutcome
impl UnsafeUnpin for EvolutionOutcome
impl UnwindSafe for EvolutionOutcome
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