Struct proptest::test_runner::TestRng[][src]

pub struct TestRng { /* fields omitted */ }

Proptest's random number generator.

Currently, this is just a wrapper around XorShiftRng.

Trait Implementations

impl Clone for TestRng
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TestRng
[src]

Formats the value using the given formatter. Read more

impl RngCore for TestRng
[src]

Return the next random u32. Read more

Return the next random u64. Read more

Fill dest with random data. Read more

Fill dest entirely with random data. Read more

Auto Trait Implementations

impl Send for TestRng

impl Sync for TestRng