pub trait RandomGen<Generator: Rng<OUTPUT>, const OUTPUT: usize> {
    fn random(rng: &mut Generator) -> Self;
}
Expand description

A trait used for generating a random object with an RNG,

Required Methods

Return a random instance of the implementing type, from the specified RNG instance.

Implementations on Foreign Types

Implementors