Struct qcheck::Gen

source ·
pub struct Gen { /* private fields */ }
Expand description

Gen represents a PRNG.

It is the source of randomness from which QuickCheck will generate values. An instance of Gen is passed to every invocation of Arbitrary::arbitrary, which permits callers to use lower level RNG routines to generate values.

It is unspecified whether this is a secure RNG or not. Therefore, callers should assume it is insecure.

Implementations§

Returns a Gen with a random seed and the given size configuration.

Returns a Gen with the given seed and a default size configuration.

Two Gens created with the same seed will generate the same values. Though the values may vary between QuickCheck releases.

Sets the size configuration for this generator.

The size parameter controls the size of random values generated. For example, it specifies the maximum length of a randomly generated vector, but is and should not be used to control the range of a randomly generated number. (Unless that number is used to control the size of a data structure.)

Returns the size configured with this generator.

Choose among the possible alternatives in the slice given. If the slice is empty, then None is returned. Otherwise, a non-None value is guaranteed to be returned.

Fill a mutable slice of any Arbitrary-compatible type with Arbitrary values.

Trait Implementations§

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.