pub struct SimStats {
pub mean: f64,
pub std_err: f64,
pub n: usize,
}Expand description
A simulation estimate: sample mean, its standard error, and the sample size.
Fields§
§mean: f64§std_err: f64§n: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for SimStats
impl RefUnwindSafe for SimStats
impl Send for SimStats
impl Sync for SimStats
impl Unpin for SimStats
impl UnsafeUnpin for SimStats
impl UnwindSafe for SimStats
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