[][src]Enum proptest::test_runner::RngAlgorithm

pub enum RngAlgorithm {
    XorShift,
    ChaCha,
    PassThrough,
    // some variants omitted
}

Identifies a particular RNG algorithm supported by proptest.

Proptest supports dynamic configuration of algorithms to allow it to continue operating with persisted regression files and to allow the configuration to be expressed in the Config struct.

Variants

XorShift

The XorShift algorithm. This was the default up through and including Proptest 0.9.0.

It is faster than ChaCha but produces lower quality randomness and has some pathological cases where it may fail to produce outputs that are random even to casual observation.

The seed must be exactly 16 bytes.

ChaCha

The ChaCha algorithm. This became the default with Proptest 0.9.1.

The seed must be exactly 32 bytes.

PassThrough

This is not an actual RNG algorithm, but instead returns data directly from its "seed".

This is useful when Proptest is being driven from some other entropy source, such as a fuzzer.

It is the user's responsibility to ensure that the seed is "big enough". Proptest makes no guarantees about how much data is consumed from the seed for any particular strategy. If the seed is exhausted, the RNG panics.

Note that in cases where a new RNG is to be derived from an existing one, the data is split evenly between them, regardless of how much entropy is actually needed. This means that combinators like prop_perturb and prop_flat_map can require extremely large inputs.

Trait Implementations

impl Clone for RngAlgorithm[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for RngAlgorithm[src]

impl Debug for RngAlgorithm[src]

impl Display for RngAlgorithm[src]

impl PartialEq<RngAlgorithm> for RngAlgorithm[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for RngAlgorithm[src]

impl FromStr for RngAlgorithm[src]

type Err = ()

The associated error which can be returned from parsing.

impl Default for RngAlgorithm[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T