[][src]Trait peroxide::statistics::dist::ParametricDist

pub trait ParametricDist {
    type Parameter;
    fn params(&self) -> Self::Parameter;
}

Extract parameter

Associated Types

Loading content...

Required methods

fn params(&self) -> Self::Parameter

Loading content...

Implementors

impl<T: PartialOrd + SampleUniform + Copy + Into<f64>> ParametricDist for OPDist<T>[src]

type Parameter = f64

impl<T: PartialOrd + SampleUniform + Copy + Into<f64>> ParametricDist for TPDist<T>[src]

type Parameter = (f64, f64)

Loading content...