pub struct PairedRatioConfidence {
pub sample_count: usize,
pub geometric_mean_ratio: f64,
pub low_ratio: f64,
pub high_ratio: f64,
}Expand description
A two-sided 95% confidence interval for a paired candidate/reference ratio.
Fields§
§sample_count: usizeNumber of paired observations.
geometric_mean_ratio: f64Geometric mean of the paired candidate/reference ratios.
low_ratio: f64Lower bound of the two-sided 95% interval.
high_ratio: f64Upper bound of the two-sided 95% interval.
Trait Implementations§
Source§impl Clone for PairedRatioConfidence
impl Clone for PairedRatioConfidence
Source§fn clone(&self) -> PairedRatioConfidence
fn clone(&self) -> PairedRatioConfidence
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 PairedRatioConfidence
Source§impl Debug for PairedRatioConfidence
impl Debug for PairedRatioConfidence
Source§impl PartialEq for PairedRatioConfidence
impl PartialEq for PairedRatioConfidence
impl StructuralPartialEq for PairedRatioConfidence
Auto Trait Implementations§
impl Freeze for PairedRatioConfidence
impl RefUnwindSafe for PairedRatioConfidence
impl Send for PairedRatioConfidence
impl Sync for PairedRatioConfidence
impl Unpin for PairedRatioConfidence
impl UnsafeUnpin for PairedRatioConfidence
impl UnwindSafe for PairedRatioConfidence
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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