pub struct RegressionSummary {
pub total_benchmarks: usize,
pub regressions: usize,
pub improvements: usize,
pub avg_performance_change: f64,
}Fields§
§total_benchmarks: usize§regressions: usize§improvements: usize§avg_performance_change: f64Trait Implementations§
Source§impl Debug for RegressionSummary
impl Debug for RegressionSummary
Source§impl<'de> Deserialize<'de> for RegressionSummary
impl<'de> Deserialize<'de> for RegressionSummary
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
Auto Trait Implementations§
impl Freeze for RegressionSummary
impl RefUnwindSafe for RegressionSummary
impl Send for RegressionSummary
impl Sync for RegressionSummary
impl Unpin for RegressionSummary
impl UnwindSafe for RegressionSummary
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