pub trait RandConstructEnvironment {
// Provided methods
fn create_random<R>() -> R
where R: RandConstructEnumWithEnv,
Self: RandConstructProbabilityMapProvider<R> + Sized { ... }
fn create_random_uniform<R>() -> R
where R: RandConstructEnumWithEnv,
Self: RandConstructProbabilityMapProvider<R> + Sized { ... }
}Provided Methods§
fn create_random<R>() -> R
fn create_random_uniform<R>() -> R
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".