pub struct FalsificationCriterion {
pub name: String,
pub description: String,
pub test_method: String,
pub alpha: f64,
}Expand description
Falsification criterion defining how to disprove the model.
Fields§
§name: StringName of the criterion
description: StringDescription of what would disprove the model
test_method: StringStatistical test to use
alpha: f64Significance level (e.g., 0.05)
Trait Implementations§
Source§impl Clone for FalsificationCriterion
impl Clone for FalsificationCriterion
Source§fn clone(&self) -> FalsificationCriterion
fn clone(&self) -> FalsificationCriterion
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 moreAuto Trait Implementations§
impl Freeze for FalsificationCriterion
impl RefUnwindSafe for FalsificationCriterion
impl Send for FalsificationCriterion
impl Sync for FalsificationCriterion
impl Unpin for FalsificationCriterion
impl UnsafeUnpin for FalsificationCriterion
impl UnwindSafe for FalsificationCriterion
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