pub enum ResponseDegeneracyKind {
BinomialAllZeros,
BinomialAllOnes,
}Expand description
Classifier for a ResponseDegeneracy. Each variant carries the family-
specific evidence the caller needs to format a useful message without
having to re-derive the diagnostic.
Variants§
BinomialAllZeros
Bernoulli / Binomial response with every observed value equal to 0.
BinomialAllOnes
Bernoulli / Binomial response with every observed value equal to 1.
Trait Implementations§
Source§impl Clone for ResponseDegeneracyKind
impl Clone for ResponseDegeneracyKind
Source§fn clone(&self) -> ResponseDegeneracyKind
fn clone(&self) -> ResponseDegeneracyKind
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 moreAuto Trait Implementations§
impl Freeze for ResponseDegeneracyKind
impl RefUnwindSafe for ResponseDegeneracyKind
impl Send for ResponseDegeneracyKind
impl Sync for ResponseDegeneracyKind
impl Unpin for ResponseDegeneracyKind
impl UnsafeUnpin for ResponseDegeneracyKind
impl UnwindSafe for ResponseDegeneracyKind
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