#[non_exhaustive]pub enum BenchmarkInvocationError {
TtftAfterCompletion,
}Expand description
Invalid timing evidence supplied by a benchmark adapter.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
TtftAfterCompletion
The first output was observed after invocation completion.
Trait Implementations§
Source§impl Clone for BenchmarkInvocationError
impl Clone for BenchmarkInvocationError
Source§fn clone(&self) -> BenchmarkInvocationError
fn clone(&self) -> BenchmarkInvocationError
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 moreimpl Copy for BenchmarkInvocationError
Source§impl Debug for BenchmarkInvocationError
impl Debug for BenchmarkInvocationError
Source§impl Display for BenchmarkInvocationError
impl Display for BenchmarkInvocationError
impl Eq for BenchmarkInvocationError
Source§impl Error for BenchmarkInvocationError
impl Error for BenchmarkInvocationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for BenchmarkInvocationError
impl PartialEq for BenchmarkInvocationError
impl StructuralPartialEq for BenchmarkInvocationError
Auto Trait Implementations§
impl Freeze for BenchmarkInvocationError
impl RefUnwindSafe for BenchmarkInvocationError
impl Send for BenchmarkInvocationError
impl Sync for BenchmarkInvocationError
impl Unpin for BenchmarkInvocationError
impl UnsafeUnpin for BenchmarkInvocationError
impl UnwindSafe for BenchmarkInvocationError
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