pub struct ConfidenceInterval {
pub lower: f64,
pub upper: f64,
pub level: f64,
}Expand description
Confidence interval bounds
Fields§
§lower: f64Lower bound of the confidence interval
upper: f64Upper bound of the confidence interval
level: f64Confidence level (e.g., 0.95 for 95% CI)
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 moreSource§impl Debug for ConfidenceInterval
impl Debug for ConfidenceInterval
impl Copy for ConfidenceInterval
Auto 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more