pub struct AndersonDarlingResult {
pub statistic: f64,
pub p_value: f64,
pub is_uniform: bool,
pub critical_values: Vec<(f64, f64)>,
pub is_valid: bool,
}Expand description
Anderson-Darling goodness-of-fit test against byte-uniform distribution.
Fields§
§statistic: f64§p_value: f64§is_uniform: bool§critical_values: Vec<(f64, f64)>§is_valid: boolTrait Implementations§
Source§impl Clone for AndersonDarlingResult
impl Clone for AndersonDarlingResult
Source§fn clone(&self) -> AndersonDarlingResult
fn clone(&self) -> AndersonDarlingResult
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 AndersonDarlingResult
impl Debug for AndersonDarlingResult
Auto Trait Implementations§
impl Freeze for AndersonDarlingResult
impl RefUnwindSafe for AndersonDarlingResult
impl Send for AndersonDarlingResult
impl Sync for AndersonDarlingResult
impl Unpin for AndersonDarlingResult
impl UnsafeUnpin for AndersonDarlingResult
impl UnwindSafe for AndersonDarlingResult
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