Trait nanorand::rand::SeedableRng
source · pub trait SeedableRng<const SEED_SIZE: usize, const OUTPUT: usize>: Rng<OUTPUT> {
// Required method
fn reseed(&mut self, seed: [u8; SEED_SIZE]);
}
Expand description
A trait that represents an RNG that can be reseeded from arbitrary bytes.
Required Methods§
Object Safety§
This trait is not object safe.