pub struct RegressionConfig {
pub limits: Vec<(EventKind, f64)>,
pub fail_fast: bool,
}Available on crate feature
runner only.Fields§
§limits: Vec<(EventKind, f64)>§fail_fast: boolImplementations§
Source§impl RegressionConfig
impl RegressionConfig
Sourcepub fn check_and_print(
&self,
metrics_summary: &MetricsSummary,
) -> Vec<CallgrindRegression>
pub fn check_and_print( &self, metrics_summary: &MetricsSummary, ) -> Vec<CallgrindRegression>
Check regression of the super::metrics::Metrics for the configured EventKinds and
print it
If the old Metrics is None then no regression checks are performed and this method returns
Ok.
§Errors
Returns an anyhow::Error with the only source crate::error::Error::RegressionError
if a regression error occurred
pub fn check( &self, metrics_summary: &MetricsSummary, ) -> Vec<CallgrindRegression>
Trait Implementations§
Source§impl Clone for RegressionConfig
impl Clone for RegressionConfig
Source§fn clone(&self) -> RegressionConfig
fn clone(&self) -> RegressionConfig
Returns a copy 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 RegressionConfig
impl Debug for RegressionConfig
Source§impl Default for RegressionConfig
impl Default for RegressionConfig
Source§impl From<RegressionConfig> for RegressionConfig
impl From<RegressionConfig> for RegressionConfig
Source§fn from(value: RegressionConfig) -> Self
fn from(value: RegressionConfig) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RegressionConfig
impl RefUnwindSafe for RegressionConfig
impl Send for RegressionConfig
impl Sync for RegressionConfig
impl Unpin for RegressionConfig
impl UnwindSafe for RegressionConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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