Skip to main content

Uniform

Trait Uniform 

Source
pub trait Uniform: Sized {
    // Required method
    fn rand<R>(rng: &mut R) -> Self
       where R: RngExt + ?Sized;
}
Expand description

A trait for a uniform random number generator.

Required Methods§

Source

fn rand<R>(rng: &mut R) -> Self
where R: RngExt + ?Sized,

Samples a random value from a uniform distribution.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§