pub struct BenchmarkFailureCount {
pub kind: BenchmarkFailureKind,
pub count: usize,
}Expand description
Count of failures in one normalized category.
Fields§
§kind: BenchmarkFailureKindNormalized failure category.
count: usizeNumber of measured invocations in this category.
Trait Implementations§
Source§impl Clone for BenchmarkFailureCount
impl Clone for BenchmarkFailureCount
Source§fn clone(&self) -> BenchmarkFailureCount
fn clone(&self) -> BenchmarkFailureCount
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 BenchmarkFailureCount
Source§impl Debug for BenchmarkFailureCount
impl Debug for BenchmarkFailureCount
Source§impl<'de> Deserialize<'de> for BenchmarkFailureCount
impl<'de> Deserialize<'de> for BenchmarkFailureCount
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
impl Eq for BenchmarkFailureCount
Source§impl PartialEq for BenchmarkFailureCount
impl PartialEq for BenchmarkFailureCount
Source§impl Serialize for BenchmarkFailureCount
impl Serialize for BenchmarkFailureCount
impl StructuralPartialEq for BenchmarkFailureCount
Auto Trait Implementations§
impl Freeze for BenchmarkFailureCount
impl RefUnwindSafe for BenchmarkFailureCount
impl Send for BenchmarkFailureCount
impl Sync for BenchmarkFailureCount
impl Unpin for BenchmarkFailureCount
impl UnsafeUnpin for BenchmarkFailureCount
impl UnwindSafe for BenchmarkFailureCount
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