pub trait PicoRandGenerate<R: PicoRandRNG, T> {
    // Required method
    fn generate(&mut self) -> T;
}
Expand description

Requirement for implicitly bounded RNG.

Required Methods§

source

fn generate(&mut self) -> T

Generate a new implicitly bound number using the PRNG.

Implementors§