pub struct BenchmarkComparisonRow {
pub suite: String,
pub span_label: String,
pub current_runs: Option<u64>,
pub previous_runs: Option<u64>,
pub instructions_avg_change_percent: Option<f64>,
pub heap_bytes_avg_change_percent: Option<f64>,
pub memory_bytes_avg_change_percent: Option<f64>,
pub total_allocation_avg_change_percent: Option<f64>,
}Fields§
§suite: String§span_label: String§current_runs: Option<u64>§previous_runs: Option<u64>§instructions_avg_change_percent: Option<f64>§heap_bytes_avg_change_percent: Option<f64>§memory_bytes_avg_change_percent: Option<f64>§total_allocation_avg_change_percent: Option<f64>Trait Implementations§
Source§impl Clone for BenchmarkComparisonRow
impl Clone for BenchmarkComparisonRow
Source§fn clone(&self) -> BenchmarkComparisonRow
fn clone(&self) -> BenchmarkComparisonRow
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 BenchmarkComparisonRow
impl Debug for BenchmarkComparisonRow
Source§impl PartialEq for BenchmarkComparisonRow
impl PartialEq for BenchmarkComparisonRow
Source§fn eq(&self, other: &BenchmarkComparisonRow) -> bool
fn eq(&self, other: &BenchmarkComparisonRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BenchmarkComparisonRow
Auto Trait Implementations§
impl Freeze for BenchmarkComparisonRow
impl RefUnwindSafe for BenchmarkComparisonRow
impl Send for BenchmarkComparisonRow
impl Sync for BenchmarkComparisonRow
impl Unpin for BenchmarkComparisonRow
impl UnsafeUnpin for BenchmarkComparisonRow
impl UnwindSafe for BenchmarkComparisonRow
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