pub struct PopulationStatistics {
pub population_mean: f64,
pub standard_error: f64,
pub n: usize,
}
Fields§
§population_mean: f64
§standard_error: f64
§n: usize
Trait Implementations§
Source§impl GetStatistics for PopulationStatistics
impl GetStatistics for PopulationStatistics
fn from_array(array: &[f64]) -> Self
Auto Trait Implementations§
impl Freeze for PopulationStatistics
impl RefUnwindSafe for PopulationStatistics
impl Send for PopulationStatistics
impl Sync for PopulationStatistics
impl Unpin for PopulationStatistics
impl UnwindSafe for PopulationStatistics
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