pub struct GapTestResult {
pub chi_squared: f64,
pub p_value: f64,
pub degrees_of_freedom: usize,
pub mean_gap: f64,
pub expected_gap: f64,
pub is_uniform_gaps: bool,
pub is_valid: bool,
}Fields§
§chi_squared: f64§p_value: f64§degrees_of_freedom: usize§mean_gap: f64§expected_gap: f64§is_uniform_gaps: bool§is_valid: boolTrait Implementations§
Source§impl Clone for GapTestResult
impl Clone for GapTestResult
Source§fn clone(&self) -> GapTestResult
fn clone(&self) -> GapTestResult
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 GapTestResult
impl Debug for GapTestResult
Auto Trait Implementations§
impl Freeze for GapTestResult
impl RefUnwindSafe for GapTestResult
impl Send for GapTestResult
impl Sync for GapTestResult
impl Unpin for GapTestResult
impl UnsafeUnpin for GapTestResult
impl UnwindSafe for GapTestResult
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