Trait netstack3_core::context::RngContext
source · 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).