Struct maidsafe_utilities::SeededRng[][src]

pub struct SeededRng(_);

A fast pseudorandom number generator for use in tests which allows seeding and prints the seed when the thread in which it is created panics.

Methods

impl SeededRng
[src]

Construct a new SeededRng using a seed generated from cryptographically secure random data.

The seed is only set once for the whole process, so every call to this will yield internal RNGs which are all seeded identically.

Construct a new SeededRng using seed.

If the underlying static seed has already been initialised to a value different to seed, then this function will panic.

Constructs a thread-local SeededRng. The seed is generated via a global SeededRng using the global seed.

Construct a new SeededRng using a seed generated from random data provided by self.

Trait Implementations

impl Default for SeededRng
[src]

Returns the "default value" for a type. Read more

impl Display for SeededRng
[src]

Formats the value using the given formatter. Read more

impl Debug for SeededRng
[src]

Formats the value using the given formatter. Read more

impl Drop for SeededRng
[src]

Executes the destructor for this type. Read more

impl Rng for SeededRng
[src]

Return the next random u32. Read more

Return a random element from values. Read more

Shuffle a mutable slice in place. Read more

Return the next random u64. Read more

Return the next random f32 selected from the half-open interval [0, 1). Read more

Return the next random f64 selected from the half-open interval [0, 1). Read more

Fill dest with random data. Read more

Return a random value of a Rand type. Read more

Important traits for Generator<'a, T, R>

Return an iterator that will yield an infinite number of randomly generated items. Read more

Generate a random value in the range [low, high). Read more

Return a bool with a 1 in n chance of true Read more

Important traits for AsciiGenerator<'a, R>

Return an iterator of random characters from the set A-Z,a-z,0-9. Read more

Return a mutable pointer to a random element from values. Read more

Auto Trait Implementations

impl Send for SeededRng

impl Sync for SeededRng