pub enum ConfintMethod {
Normal,
AgrestiCoull,
Wilson,
Beta,
Jeffreys,
}Expand description
Confidence-interval method for a binomial proportion.
Variants§
Normal
Asymptotic normal (Wald) interval (clipped to [0, 1]).
AgrestiCoull
Agresti–Coull interval (clipped to [0, 1]).
Wilson
Wilson score interval.
Beta
Clopper–Pearson exact (Beta) interval.
Jeffreys
Jeffreys Bayesian interval.
Trait Implementations§
Source§impl Clone for ConfintMethod
impl Clone for ConfintMethod
Source§fn clone(&self) -> ConfintMethod
fn clone(&self) -> ConfintMethod
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 ConfintMethod
Source§impl Debug for ConfintMethod
impl Debug for ConfintMethod
impl Eq for ConfintMethod
Source§impl PartialEq for ConfintMethod
impl PartialEq for ConfintMethod
impl StructuralPartialEq for ConfintMethod
Auto Trait Implementations§
impl Freeze for ConfintMethod
impl RefUnwindSafe for ConfintMethod
impl Send for ConfintMethod
impl Sync for ConfintMethod
impl Unpin for ConfintMethod
impl UnsafeUnpin for ConfintMethod
impl UnwindSafe for ConfintMethod
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