Struct proptest::collection::SizeRange [] [src]

pub struct SizeRange(_);

The minimum and maximum range/bounds on the size of a collection. The interval must form a subset of [0, std::usize::MAX).

The Default is 0..100.

Methods

impl SizeRange
[src]

[src]

Creates a SizeBounds from a Range<usize>.

[src]

Merges self together with some other argument producing a product type expected by some impelementations of A: Arbitrary in A::Parameters. This can be more ergonomic to work with and may help type inference.

[src]

Merges self together with some other argument generated with a default value producing a product type expected by some impelementations of A: Arbitrary in A::Parameters. This can be more ergonomic to work with and may help type inference.

Trait Implementations

impl Arbitrary for SizeRange
[src]

The type of [ValueTree] used for Self's [Strategy]. Read more

The type of parameters that [arbitrary_with] accepts for configuration of the generated [Strategy]. Parameters must implement [Default]. Read more

The type of [Strategy] used to generate values of type Self. Read more

[src]

Generates a [Strategy] for producing arbitrary values of type the implementing type (Self). The strategy is passed the arguments given in args. Read more

[src]

Generates a [Strategy] for producing arbitrary values of type the implementing type (Self). Read more

impl Default for SizeRange
[src]

[src]

Constructs a SizeBounds that will ranges between 0 and 100 elements.

impl From<(usize, usize)> for SizeRange
[src]

Given (low: usize, high: usize), then a size range of [low..high) is the result.

[src]

Performs the conversion.

impl From<usize> for SizeRange
[src]

Given exact, then a size range of [exact..exact + 1) is the result.

[src]

Performs the conversion.

impl From<RangeTo<usize>> for SizeRange
[src]

Given ..high, then a size range [0..high) is the result.

[src]

Performs the conversion.

impl From<Range<usize>> for SizeRange
[src]

Given low..high, then a size range [low..high) is the result.

[src]

Performs the conversion.

impl From<SizeRange> for Range<usize>
[src]

[src]

Performs the conversion.

impl Add<usize> for SizeRange
[src]

Adds usize to both start and end of the bounds.

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Clone for SizeRange
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for SizeRange
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for SizeRange
[src]

impl Hash for SizeRange
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for SizeRange
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SizeRange

impl Sync for SizeRange