pub struct RegressionResult {
pub verdict: Verdict,
pub change_pct: f64,
pub p_value: f64,
pub effect_size_cohens_d: f64,
pub ci_lower: f64,
pub ci_upper: f64,
}Expand description
Full regression comparison result.
Fields§
§verdict: Verdict§change_pct: f64Change from baseline (positive = slower/regression, negative = faster/improvement)
p_value: f64Statistical significance
effect_size_cohens_d: f64Cohen’s d effect size (|d| >= 0.8 = large effect)
ci_lower: f64Bootstrap 99% CI lower bound for ratio (current/baseline)
ci_upper: f64Bootstrap 99% CI upper bound for ratio (current/baseline)
Trait Implementations§
Source§impl Clone for RegressionResult
impl Clone for RegressionResult
Source§fn clone(&self) -> RegressionResult
fn clone(&self) -> RegressionResult
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 RegressionResult
impl Debug for RegressionResult
Source§impl<'de> Deserialize<'de> for RegressionResult
impl<'de> Deserialize<'de> for RegressionResult
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 RegressionResult
impl RefUnwindSafe for RegressionResult
impl Send for RegressionResult
impl Sync for RegressionResult
impl Unpin for RegressionResult
impl UnsafeUnpin for RegressionResult
impl UnwindSafe for RegressionResult
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