pub enum FailKind {
Triage,
Profile,
VersionMismatch,
BadMetadata,
Skipped,
}Expand description
Why or when did this test fail?
Variants§
Triage
Failed while triaging it to determine the iteration count.
Profile
Failed while profiling it.
VersionMismatch
Failed due to an incompatible version for the test.
BadMetadata
Could not parse metadata for a test.
Skipped
Skipped due to filters applied on the perf run.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FailKind
impl<'de> Deserialize<'de> for FailKind
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
Auto Trait Implementations§
impl Freeze for FailKind
impl RefUnwindSafe for FailKind
impl Send for FailKind
impl Sync for FailKind
impl Unpin for FailKind
impl UnwindSafe for FailKind
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