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]

[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.

[src]

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.

[src]

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

[src]

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

Trait Implementations

impl Default for SeededRng
[src]

[src]

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

impl Display for SeededRng
[src]

[src]

Formats the value using the given formatter. Read more

impl Debug for SeededRng
[src]

[src]

Formats the value using the given formatter.

impl Drop for SeededRng
[src]

[src]

Executes the destructor for this type. Read more

impl Rng for SeededRng
[src]

[src]

Return the next random u32. Read more

[src]

Return a random element from values. Read more

[src]

Shuffle a mutable slice in place. Read more

[src]

Return the next random u64. Read more

[src]

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

[src]

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

[src]

Fill dest with random data. Read more

[src]

Return a random value of a Rand type. Read more

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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