pub enum BenchmarkRunStatus {
Running,
Complete,
Failed,
}Expand description
Lifecycle state of a benchmark run.
Variants§
Running
Run is currently in progress.
Complete
Run finished successfully.
Failed
Run encountered an error or was aborted.
Trait Implementations§
Source§impl Clone for BenchmarkRunStatus
impl Clone for BenchmarkRunStatus
Source§fn clone(&self) -> BenchmarkRunStatus
fn clone(&self) -> BenchmarkRunStatus
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 BenchmarkRunStatus
impl Debug for BenchmarkRunStatus
Source§impl<'de> Deserialize<'de> for BenchmarkRunStatus
impl<'de> Deserialize<'de> for BenchmarkRunStatus
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 PartialEq for BenchmarkRunStatus
impl PartialEq for BenchmarkRunStatus
Source§fn eq(&self, other: &BenchmarkRunStatus) -> bool
fn eq(&self, other: &BenchmarkRunStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BenchmarkRunStatus
impl Serialize for BenchmarkRunStatus
impl Eq for BenchmarkRunStatus
impl StructuralPartialEq for BenchmarkRunStatus
Auto Trait Implementations§
impl Freeze for BenchmarkRunStatus
impl RefUnwindSafe for BenchmarkRunStatus
impl Send for BenchmarkRunStatus
impl Sync for BenchmarkRunStatus
impl Unpin for BenchmarkRunStatus
impl UnsafeUnpin for BenchmarkRunStatus
impl UnwindSafe for BenchmarkRunStatus
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