pub struct ExperimentHypothesis {
pub null: String,
pub alternative: String,
pub alpha: f64,
}Expand description
A hypothesis to test in the experiment.
Fields§
§null: StringThe null hypothesis (what we try to disprove)
alternative: StringThe alternative hypothesis
alpha: f64Significance level (α)
Implementations§
Trait Implementations§
Source§impl Clone for ExperimentHypothesis
impl Clone for ExperimentHypothesis
Source§fn clone(&self) -> ExperimentHypothesis
fn clone(&self) -> ExperimentHypothesis
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 ExperimentHypothesis
impl Debug for ExperimentHypothesis
Source§impl<'de> Deserialize<'de> for ExperimentHypothesis
impl<'de> Deserialize<'de> for ExperimentHypothesis
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 ExperimentHypothesis
impl RefUnwindSafe for ExperimentHypothesis
impl Send for ExperimentHypothesis
impl Sync for ExperimentHypothesis
impl Unpin for ExperimentHypothesis
impl UnsafeUnpin for ExperimentHypothesis
impl UnwindSafe for ExperimentHypothesis
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