pub struct PerformanceReport {
pub results: Vec<BenchmarkResult>,
pub summary: ReportSummary,
pub trends: TrendAnalysis,
pub regressions: Vec<RegressionAlert>,
}Expand description
Performance report generator
Fields§
§results: Vec<BenchmarkResult>All benchmark results
summary: ReportSummarySummary statistics
trends: TrendAnalysisTrend analysis
regressions: Vec<RegressionAlert>Regression alerts
Implementations§
Source§impl PerformanceReport
impl PerformanceReport
pub fn new( results: Vec<BenchmarkResult>, _config: &StatisticalAnalysisConfig, ) -> Self
Auto Trait Implementations§
impl Freeze for PerformanceReport
impl RefUnwindSafe for PerformanceReport
impl Send for PerformanceReport
impl Sync for PerformanceReport
impl Unpin for PerformanceReport
impl UnwindSafe for PerformanceReport
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more