pub struct RegressionTestConfig {
pub regression_threshold: f64,
pub significance_level: f64,
pub min_samples: usize,
pub baseline_path: String,
pub auto_update_baseline: bool,
}Fields§
§regression_threshold: f64Acceptable performance degradation threshold (as percentage)
significance_level: f64Statistical significance level for detecting regressions
min_samples: usizeMinimum number of samples required for reliable testing
baseline_path: StringPath to store baseline data
auto_update_baseline: boolWhether to update baselines automatically
Trait Implementations§
Source§impl Clone for RegressionTestConfig
impl Clone for RegressionTestConfig
Source§fn clone(&self) -> RegressionTestConfig
fn clone(&self) -> RegressionTestConfig
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 RegressionTestConfig
impl Debug for RegressionTestConfig
Auto Trait Implementations§
impl Freeze for RegressionTestConfig
impl RefUnwindSafe for RegressionTestConfig
impl Send for RegressionTestConfig
impl Sync for RegressionTestConfig
impl Unpin for RegressionTestConfig
impl UnsafeUnpin for RegressionTestConfig
impl UnwindSafe for RegressionTestConfig
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