pub fn new() -> Random<impl Rng + Clone> ⓘ
Creates a new instance of the default PRNG.
The generator is seeded securely from the system entropy source.
let mut rand = urandom::new(); let value: i32 = rand.next();