pub enum MutationStatus {
Runnable,
NotCovered,
Killed,
Lived,
TimedOut,
NotViable,
Skipped,
}Variants§
Trait Implementations§
Source§impl Clone for MutationStatus
impl Clone for MutationStatus
Source§fn clone(&self) -> MutationStatus
fn clone(&self) -> MutationStatus
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 MutationStatus
impl Debug for MutationStatus
Source§impl<'de> Deserialize<'de> for MutationStatus
impl<'de> Deserialize<'de> for MutationStatus
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 MutationStatus
impl Ord for MutationStatus
Source§fn cmp(&self, other: &MutationStatus) -> Ordering
fn cmp(&self, other: &MutationStatus) -> 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 MutationStatus
impl PartialEq for MutationStatus
Source§fn eq(&self, other: &MutationStatus) -> bool
fn eq(&self, other: &MutationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MutationStatus
impl PartialOrd for MutationStatus
Source§impl Serialize for MutationStatus
impl Serialize for MutationStatus
impl Copy for MutationStatus
impl Eq for MutationStatus
impl StructuralPartialEq for MutationStatus
Auto Trait Implementations§
impl Freeze for MutationStatus
impl RefUnwindSafe for MutationStatus
impl Send for MutationStatus
impl Sync for MutationStatus
impl Unpin for MutationStatus
impl UnsafeUnpin for MutationStatus
impl UnwindSafe for MutationStatus
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