pub struct MultipleCorrectionResult {
pub adjusted_p_values: Vec<f64>,
pub rejected: Vec<bool>,
pub method: String,
pub alpha: f64,
pub n_tests: usize,
pub n_rejected: usize,
pub is_valid: bool,
}Fields§
§adjusted_p_values: Vec<f64>§rejected: Vec<bool>§method: String§alpha: f64§n_tests: usize§n_rejected: usize§is_valid: boolTrait Implementations§
Source§impl Clone for MultipleCorrectionResult
impl Clone for MultipleCorrectionResult
Source§fn clone(&self) -> MultipleCorrectionResult
fn clone(&self) -> MultipleCorrectionResult
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 MultipleCorrectionResult
impl Debug for MultipleCorrectionResult
Auto Trait Implementations§
impl Freeze for MultipleCorrectionResult
impl RefUnwindSafe for MultipleCorrectionResult
impl Send for MultipleCorrectionResult
impl Sync for MultipleCorrectionResult
impl Unpin for MultipleCorrectionResult
impl UnsafeUnpin for MultipleCorrectionResult
impl UnwindSafe for MultipleCorrectionResult
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