pub trait RngBuilder<T> {
type Rng: Rng + 'static;
// Required method
fn build_rng(&self, mixin: T) -> Self::Rng;
}Expand description
Creation of random number generator in potentially parallelized applications.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".