[][src]Struct rstat::univariate::beta::Beta

pub struct Beta(_);

Methods

impl Beta[src]

pub fn new(alpha: f64, beta: f64) -> Result<Beta, Error>[src]

pub fn new_unchecked(alpha: f64, beta: f64) -> Beta[src]

Trait Implementations

impl Clone for Beta[src]

impl ContinuousDistribution for Beta[src]

impl Copy for Beta[src]

impl Debug for Beta[src]

impl Default for Beta[src]

impl Display for Beta[src]

impl Distribution for Beta[src]

type Support = Interval

Support of sample elements.

type Params = Params

Parameter set uniquely defining the instance.

impl Entropy for Beta[src]

impl From<Params> for Beta[src]

impl Modes for Beta[src]

impl Quantiles for Beta[src]

impl UnivariateMoments for Beta[src]

Auto Trait Implementations

impl RefUnwindSafe for Beta

impl Send for Beta

impl Sync for Beta

impl Unpin for Beta

impl UnwindSafe for Beta

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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>,