pub trait RandGen {
// Required method
fn rand_gen(rng: &mut ThreadRng) -> Self;
}
Expand description
Types that has random generator
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.