pub trait RngContext {
type Rng<'a>: RngCore + CryptoRng
where Self: 'a;
// Required method
fn rng(&mut self) -> Self::Rng<'_>;
}
Expand description
A context that provides a random number generator (RNG).
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.