pub struct ConfidenceInterval {
pub lower_bound: Duration,
pub upper_bound: Duration,
pub point_estimate: Duration,
pub confidence_level: f64,
pub margin_of_error: Duration,
}Expand description
Confidence interval for a statistical measure
Fields§
§lower_bound: DurationLower bound of the confidence interval
upper_bound: DurationUpper bound of the confidence interval
point_estimate: DurationPoint estimate (usually the mean)
confidence_level: f64Confidence level (e.g., 0.95 for 95%)
margin_of_error: DurationMargin of error
Implementations§
Trait Implementations§
Source§impl Clone for ConfidenceInterval
impl Clone for ConfidenceInterval
Source§fn clone(&self) -> ConfidenceInterval
fn clone(&self) -> ConfidenceInterval
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 moreAuto Trait Implementations§
impl Freeze for ConfidenceInterval
impl RefUnwindSafe for ConfidenceInterval
impl Send for ConfidenceInterval
impl Sync for ConfidenceInterval
impl Unpin for ConfidenceInterval
impl UnwindSafe for ConfidenceInterval
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