Enum rv::dist::NormalInvChiSquaredError[][src]

pub enum NormalInvChiSquaredError {
    MNotFinite {
        m: f64,
    },
    KTooLow {
        k: f64,
    },
    KNotFinite {
        k: f64,
    },
    VTooLow {
        v: f64,
    },
    VNotFinite {
        v: f64,
    },
    S2TooLow {
        s2: f64,
    },
    S2NotFinite {
        s2: f64,
    },
}

Variants

MNotFinite

The m parameter is infinite or NaN

Show fields

Fields of MNotFinite

m: f64
KTooLow

The k parameter is less than or equal to zero

Show fields

Fields of KTooLow

k: f64
KNotFinite

The k parameter is infinite or NaN

Show fields

Fields of KNotFinite

k: f64
VTooLow

The v parameter is less than or equal to zero

Show fields

Fields of VTooLow

v: f64
VNotFinite

The v parameter is infinite or NaN

Show fields

Fields of VNotFinite

v: f64
S2TooLow

The s2 parameter is less than or equal to zero

Show fields

Fields of S2TooLow

s2: f64
S2NotFinite

The s2 parameter is infinite or NaN

Show fields

Fields of S2NotFinite

s2: f64

Trait Implementations

impl Clone for NormalInvChiSquaredError[src]

impl Debug for NormalInvChiSquaredError[src]

impl PartialEq<NormalInvChiSquaredError> for NormalInvChiSquaredError[src]

impl StructuralPartialEq for NormalInvChiSquaredError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,