pub trait RandValue {
// Required method
fn rand_value<R: Rng>(rand: &mut R) -> Self;
}
Required Methods§
fn rand_value<R: Rng>(rand: &mut R) -> Self
Object Safety§
This trait is not object safe.
pub trait RandValue {
// Required method
fn rand_value<R: Rng>(rand: &mut R) -> Self;
}