pub struct TostResult {
pub pvalue: f64,
pub t1: f64,
pub pv1: f64,
pub t2: f64,
pub pv2: f64,
}Expand description
Outcome of a TOST equivalence test.
Fields§
§pvalue: f64p-value of the equivalence test (the larger of the two one-sided p-values); reject non-equivalence when this is small.
t1: f64Statistic of the lower-bound (larger) one-sided test.
pv1: f64p-value of the lower-bound one-sided test.
t2: f64Statistic of the upper-bound (smaller) one-sided test.
pv2: f64p-value of the upper-bound one-sided test.
Trait Implementations§
Source§impl Clone for TostResult
impl Clone for TostResult
Source§fn clone(&self) -> TostResult
fn clone(&self) -> TostResult
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 TostResult
Auto Trait Implementations§
impl Freeze for TostResult
impl RefUnwindSafe for TostResult
impl Send for TostResult
impl Sync for TostResult
impl Unpin for TostResult
impl UnsafeUnpin for TostResult
impl UnwindSafe for TostResult
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