pub struct BenchmarkComparisonReport {
pub current_benchmark: BenchmarkConfig,
pub baseline_benchmark: BenchmarkConfig,
pub current_suites: Vec<BenchmarkSuite>,
pub baseline_suites: Vec<BenchmarkSuite>,
pub thresholds: BenchmarkRegressionThresholds,
pub deltas: Vec<BenchmarkDelta>,
pub gate: BenchmarkGateOutcome,
}Fields§
§current_benchmark: BenchmarkConfig§baseline_benchmark: BenchmarkConfig§current_suites: Vec<BenchmarkSuite>§baseline_suites: Vec<BenchmarkSuite>§thresholds: BenchmarkRegressionThresholds§deltas: Vec<BenchmarkDelta>§gate: BenchmarkGateOutcomeTrait Implementations§
Source§impl Clone for BenchmarkComparisonReport
impl Clone for BenchmarkComparisonReport
Source§fn clone(&self) -> BenchmarkComparisonReport
fn clone(&self) -> BenchmarkComparisonReport
Returns a duplicate of the value. Read more
1.0.0 · 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 BenchmarkComparisonReport
impl Debug for BenchmarkComparisonReport
Source§impl<'de> Deserialize<'de> for BenchmarkComparisonReport
impl<'de> Deserialize<'de> for BenchmarkComparisonReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for BenchmarkComparisonReport
Auto Trait Implementations§
impl Freeze for BenchmarkComparisonReport
impl RefUnwindSafe for BenchmarkComparisonReport
impl Send for BenchmarkComparisonReport
impl Sync for BenchmarkComparisonReport
impl Unpin for BenchmarkComparisonReport
impl UnsafeUnpin for BenchmarkComparisonReport
impl UnwindSafe for BenchmarkComparisonReport
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