pub enum EffectInterpretation {
Negligible,
Small,
Medium,
Large,
}Expand description
Interpretation of effect size magnitude
Variants§
Negligible
|d| < 0.2 - negligible difference
Small
0.2 <= |d| < 0.5 - small difference
Medium
0.5 <= |d| < 0.8 - medium difference
Large
|d| >= 0.8 - large difference
Trait Implementations§
Source§impl Clone for EffectInterpretation
impl Clone for EffectInterpretation
Source§fn clone(&self) -> EffectInterpretation
fn clone(&self) -> EffectInterpretation
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 EffectInterpretation
impl Debug for EffectInterpretation
Source§impl Display for EffectInterpretation
impl Display for EffectInterpretation
Source§impl PartialEq for EffectInterpretation
impl PartialEq for EffectInterpretation
impl Copy for EffectInterpretation
impl Eq for EffectInterpretation
impl StructuralPartialEq for EffectInterpretation
Auto Trait Implementations§
impl Freeze for EffectInterpretation
impl RefUnwindSafe for EffectInterpretation
impl Send for EffectInterpretation
impl Sync for EffectInterpretation
impl Unpin for EffectInterpretation
impl UnwindSafe for EffectInterpretation
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