pub struct CiResult {
pub low: f64,
pub median: f64,
pub high: f64,
}Expand description
Percentile-based 95% CI plus the sample median.
Fields§
§low: f64Lower bound (2.5 percentile).
median: f64Median (50 percentile).
high: f64Upper bound (97.5 percentile).
Trait Implementations§
impl Copy for CiResult
impl StructuralPartialEq for CiResult
Auto Trait Implementations§
impl Freeze for CiResult
impl RefUnwindSafe for CiResult
impl Send for CiResult
impl Sync for CiResult
impl Unpin for CiResult
impl UnsafeUnpin for CiResult
impl UnwindSafe for CiResult
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