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,
/* private fields */
}Fields§
§suite: String§span_label: String§runs: u64§total: BenchmarkCounters§average: BenchmarkAverages§min: BenchmarkCounters§max: BenchmarkCounters§peak_end: BenchmarkCountersImplementations§
Source§impl BenchmarkAggregateRow
impl BenchmarkAggregateRow
Sourcepub const fn is_all_suites(&self) -> bool
pub const fn is_all_suites(&self) -> bool
Report whether this row aggregates matching spans across every suite.
Trait 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
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