pub struct WhiteSingleResult {
pub method: String,
pub statistic: f64,
pub p_value: f64,
pub passed: bool,
}Expand description
Result of White test with single method
Fields§
§method: String§statistic: f64§p_value: f64§passed: boolTrait Implementations§
Source§impl Clone for WhiteSingleResult
impl Clone for WhiteSingleResult
Source§fn clone(&self) -> WhiteSingleResult
fn clone(&self) -> WhiteSingleResult
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 WhiteSingleResult
impl Debug for WhiteSingleResult
Auto Trait Implementations§
impl Freeze for WhiteSingleResult
impl RefUnwindSafe for WhiteSingleResult
impl Send for WhiteSingleResult
impl Sync for WhiteSingleResult
impl Unpin for WhiteSingleResult
impl UnwindSafe for WhiteSingleResult
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