pub trait Distribution<T>: Send {
    fn sample(&self, rng: &mut Rng) -> T;
}

Required methods

Implementors