pub struct BenchmarkComparison {
pub baseline: BenchmarkComparisonBaseline,
pub summary: BenchmarkComparisonSummary,
pub scenario_deltas: Vec<BenchmarkScenarioDelta>,
pub scenarios_missing_from_baseline: Vec<String>,
pub baseline_only_scenarios: Vec<String>,
}Fields§
§baseline: BenchmarkComparisonBaseline§summary: BenchmarkComparisonSummary§scenario_deltas: Vec<BenchmarkScenarioDelta>§scenarios_missing_from_baseline: Vec<String>§baseline_only_scenarios: Vec<String>Trait Implementations§
Source§impl Clone for BenchmarkComparison
impl Clone for BenchmarkComparison
Source§fn clone(&self) -> BenchmarkComparison
fn clone(&self) -> BenchmarkComparison
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 BenchmarkComparison
impl Debug for BenchmarkComparison
Source§impl PartialEq for BenchmarkComparison
impl PartialEq for BenchmarkComparison
Source§fn eq(&self, other: &BenchmarkComparison) -> bool
fn eq(&self, other: &BenchmarkComparison) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BenchmarkComparison
impl Serialize for BenchmarkComparison
impl StructuralPartialEq for BenchmarkComparison
Auto Trait Implementations§
impl Freeze for BenchmarkComparison
impl RefUnwindSafe for BenchmarkComparison
impl Send for BenchmarkComparison
impl Sync for BenchmarkComparison
impl Unpin for BenchmarkComparison
impl UnsafeUnpin for BenchmarkComparison
impl UnwindSafe for BenchmarkComparison
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