Struct proptest::strategy::NoShrink [] [src]

pub struct NoShrink<T>(_);

Wraps a Strategy or ValueTree to suppress shrinking of generated values.

See Strategy::no_shrink() for more details.

Trait Implementations

impl<T: Clone> Clone for NoShrink<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for NoShrink<T>
[src]

impl<T: Debug> Debug for NoShrink<T>
[src]

Formats the value using the given formatter.

impl<T: Strategy> Strategy for NoShrink<T>
[src]

The value tree generated by this Strategy. Read more

Generate a new value tree from the given runner. Read more

Returns a strategy which produces values transformed by the function fun. Read more

Returns a strategy which only produces values accepted by fun. Read more

Returns a strategy which picks uniformly from self and other. Read more

Erases the type of this Strategy so it can be passed around as a simple trait object. Read more

Wraps this strategy to prevent values from being subject to shrinking. Read more

impl<T: ValueTree> ValueTree for NoShrink<T>
[src]

The type of the value produced by this ValueTree.

Returns the current value.

Attempts to simplify the current value. Notionally, this sets the "high" value to the current value, and the current value to a "halfway point" between high and low, rounding towards low. Read more

Attempts to partially undo the last simplification. Notionally, this sets the "low" value to one plus the current value, and the current value to a "halfway point" between high and the new low, rounding towards low. Read more