pub struct BenchmarkRunReport {
pub parse: BenchmarkParseReport,
pub spans: BenchmarkSpanReport,
pub aggregates: BenchmarkAggregateReport,
pub comparison: Option<BenchmarkComparisonReport>,
pub metadata: BenchmarkRunMetadata,
}Fields§
§parse: BenchmarkParseReport§spans: BenchmarkSpanReport§aggregates: BenchmarkAggregateReport§comparison: Option<BenchmarkComparisonReport>§metadata: BenchmarkRunMetadataTrait Implementations§
Source§impl Clone for BenchmarkRunReport
impl Clone for BenchmarkRunReport
Source§fn clone(&self) -> BenchmarkRunReport
fn clone(&self) -> BenchmarkRunReport
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 BenchmarkRunReport
impl Debug for BenchmarkRunReport
Source§impl PartialEq for BenchmarkRunReport
impl PartialEq for BenchmarkRunReport
Source§fn eq(&self, other: &BenchmarkRunReport) -> bool
fn eq(&self, other: &BenchmarkRunReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BenchmarkRunReport
Auto Trait Implementations§
impl Freeze for BenchmarkRunReport
impl RefUnwindSafe for BenchmarkRunReport
impl Send for BenchmarkRunReport
impl Sync for BenchmarkRunReport
impl Unpin for BenchmarkRunReport
impl UnsafeUnpin for BenchmarkRunReport
impl UnwindSafe for BenchmarkRunReport
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