pub struct WilsonResult {
pub low: FP,
pub high: FP,
}
Expand description
Result of the wilson
calculation.
Next “trial” is expected to be “success” with probability from low
to high
with a confidence that depend on z
parameter.
Fields§
§low: FP
Lower bound of a Wilson confidence interval
high: FP
Higher bound of a Wilson confidence interval
Trait Implementations§
Source§impl Debug for WilsonResult
impl Debug for WilsonResult
Source§impl PartialEq for WilsonResult
impl PartialEq for WilsonResult
Source§impl PartialOrd for WilsonResult
impl PartialOrd for WilsonResult
impl StructuralPartialEq for WilsonResult
Auto Trait Implementations§
impl Freeze for WilsonResult
impl RefUnwindSafe for WilsonResult
impl Send for WilsonResult
impl Sync for WilsonResult
impl Unpin for WilsonResult
impl UnwindSafe for WilsonResult
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