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

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

A value like 0..=std::usize::MAX will still be accepted but will silently truncate the maximum to std::usize::MAX - 1.

The Default is 0..100.

Methods

impl SizeRange
[src]

Creates a SizeBounds from a RangeInclusive<usize>.

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.

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

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

impl Debug for SizeRange
[src]

impl PartialEq<SizeRange> for SizeRange
[src]

impl Eq for SizeRange
[src]

impl Add<usize> for SizeRange
[src]

Adds usize to both start and end of the bounds.

Panics if adding to either end overflows usize.

The resulting type after applying the + operator.

impl Hash for SizeRange
[src]

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

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

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

impl From<usize> for SizeRange
[src]

Given exact, then a size range of [exact, exact] is the result.

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

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

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

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

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

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

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

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

impl Clone for SizeRange
[src]

Performs copy-assignment from source. Read more

impl Default for SizeRange
[src]

Constructs a SizeRange equivalent to size_range(0..100).

Auto Trait Implementations

impl Send for SizeRange

impl Sync for SizeRange

Blanket Implementations

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> From for T
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

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> ToOwned for T where
    T: Clone
[src]