Struct proptest::strategy::Singleton [] [src]

pub struct Singleton<T: Clone + Debug>(pub T);

A Strategy which always produces the same value and never simplifies.

Trait Implementations

impl<T: Clone + Clone + Debug> Clone for Singleton<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy + Clone + Debug> Copy for Singleton<T>
[src]

impl<T: Debug + Clone + Debug> Debug for Singleton<T>
[src]

Formats the value using the given formatter.

impl<T: Clone + Debug> Strategy for Singleton<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

impl<T: Clone + Debug> ValueTree for Singleton<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