pub struct BenchmarkAggregateRow {
pub suite: String,
pub span_label: String,
pub runs: u64,
pub total: BenchmarkCounters,
pub average: BenchmarkAverages,
pub min: BenchmarkCounters,
pub max: BenchmarkCounters,
pub peak_end: BenchmarkCounters,
}Fields§
§suite: String§span_label: String§runs: u64§total: BenchmarkCounters§average: BenchmarkAverages§min: BenchmarkCounters§max: BenchmarkCounters§peak_end: BenchmarkCountersTrait Implementations§
Source§impl Clone for BenchmarkAggregateRow
impl Clone for BenchmarkAggregateRow
Source§fn clone(&self) -> BenchmarkAggregateRow
fn clone(&self) -> BenchmarkAggregateRow
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 BenchmarkAggregateRow
impl Debug for BenchmarkAggregateRow
Source§impl PartialEq for BenchmarkAggregateRow
impl PartialEq for BenchmarkAggregateRow
Source§fn eq(&self, other: &BenchmarkAggregateRow) -> bool
fn eq(&self, other: &BenchmarkAggregateRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BenchmarkAggregateRow
Auto Trait Implementations§
impl Freeze for BenchmarkAggregateRow
impl RefUnwindSafe for BenchmarkAggregateRow
impl Send for BenchmarkAggregateRow
impl Sync for BenchmarkAggregateRow
impl Unpin for BenchmarkAggregateRow
impl UnsafeUnpin for BenchmarkAggregateRow
impl UnwindSafe for BenchmarkAggregateRow
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