pub struct FalsificationConfig {
pub null_hypothesis: String,
pub significance: f64,
}Expand description
Falsification testing configuration.
Fields§
§null_hypothesis: StringNull hypothesis description.
significance: f64Significance level (alpha).
Trait Implementations§
Source§impl Clone for FalsificationConfig
impl Clone for FalsificationConfig
Source§fn clone(&self) -> FalsificationConfig
fn clone(&self) -> FalsificationConfig
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 FalsificationConfig
impl Debug for FalsificationConfig
Source§impl Default for FalsificationConfig
impl Default for FalsificationConfig
Source§fn default() -> FalsificationConfig
fn default() -> FalsificationConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FalsificationConfig
impl<'de> Deserialize<'de> for FalsificationConfig
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 FalsificationConfig
impl RefUnwindSafe for FalsificationConfig
impl Send for FalsificationConfig
impl Sync for FalsificationConfig
impl Unpin for FalsificationConfig
impl UnsafeUnpin for FalsificationConfig
impl UnwindSafe for FalsificationConfig
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