pub struct MonteCarloError {
pub stderr: f64,
pub samples: u64,
}Expand description
Per-estimate Monte Carlo uncertainty summary.
Fields§
§stderr: f64Estimated standard error of the reported score.
samples: u64Samples contributing to this estimate.
Trait Implementations§
Source§impl Clone for MonteCarloError
impl Clone for MonteCarloError
Source§fn clone(&self) -> MonteCarloError
fn clone(&self) -> MonteCarloError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MonteCarloError
Source§impl Debug for MonteCarloError
impl Debug for MonteCarloError
Source§impl Default for MonteCarloError
impl Default for MonteCarloError
Source§fn default() -> MonteCarloError
fn default() -> MonteCarloError
Returns the “default value” for a type. Read more
Source§impl PartialEq for MonteCarloError
impl PartialEq for MonteCarloError
impl StructuralPartialEq for MonteCarloError
Auto Trait Implementations§
impl Freeze for MonteCarloError
impl RefUnwindSafe for MonteCarloError
impl Send for MonteCarloError
impl Sync for MonteCarloError
impl Unpin for MonteCarloError
impl UnsafeUnpin for MonteCarloError
impl UnwindSafe for MonteCarloError
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