[][src]Trait af_lib::prelude::af_core::test::prelude::Random

pub trait Random {
    pub fn random_with(rng: &mut Rng) -> Self;

    pub fn random() -> Self { ... }
}

A trait for types that can be created randomly.

Required methods

pub fn random_with(rng: &mut Rng) -> Self[src]

Returns a random value using the given Rng.

Loading content...

Provided methods

pub fn random() -> Self[src]

Returns a random value.

Loading content...

Implementors

impl Random for Uuid[src]

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

Loading content...