[][src]Trait rand::Rand

pub trait Rand: Sized {
    fn rand<R: Rng>(rng: &mut R) -> Self;
}
Deprecated since 0.5.0:

replaced by distributions::Standard

A type that can be randomly generated using an Rng.

This is merely an adapter around the Standard distribution for convenience and backwards-compatibility.

Required methods

fn rand<R: Rng>(rng: &mut R) -> Self

Deprecated since 0.5.0:

replaced by distributions::Standard

Generates a random instance of this type using the specified source of randomness.

Loading content...

Implementors

impl<T> Rand for T where
    Standard: Distribution<T>, 
[src]

Loading content...