pub trait ParametricDist {
    type Parameter;

    fn params(&self) -> Self::Parameter;
}
Expand description

Extract parameter

Required Associated Types

Required Methods

Implementors