pub struct GofResult {
pub statistic: f64,
pub pvalue: f64,
}Expand description
A generic (statistic, p-value) result for the tests in this module.
Fields§
§statistic: f64Test statistic.
pvalue: f64Two-sided p-value under the null.
Trait Implementations§
impl Copy for GofResult
impl StructuralPartialEq for GofResult
Auto Trait Implementations§
impl Freeze for GofResult
impl RefUnwindSafe for GofResult
impl Send for GofResult
impl Sync for GofResult
impl Unpin for GofResult
impl UnsafeUnpin for GofResult
impl UnwindSafe for GofResult
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