pub struct PopulationStatistics {
pub population_mean: f64,
pub standard_error: f64,
pub n: usize,
}
Fields
population_mean: f64
standard_error: f64
n: usize
Auto Trait Implementations
impl RefUnwindSafe for PopulationStatistics
impl Send for PopulationStatistics
impl Sync for PopulationStatistics
impl Unpin for PopulationStatistics
impl UnwindSafe for PopulationStatistics
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more