Struct proptest::strategy::FilterMapValueTree[][src]

pub struct FilterMapValueTree<V, F, O> { /* fields omitted */ }

ValueTree corresponding to FilterMap.

Trait Implementations

impl<V: Clone + ValueTree, F: Fn(V::Value) -> Option<O>, O> Clone for FilterMapValueTree<V, F, O>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<V: Debug, F, O> Debug for FilterMapValueTree<V, F, O>
[src]

Formats the value using the given formatter. Read more

impl<V: ValueTree, F: Fn(V::Value) -> Option<O>, O: Debug> ValueTree for FilterMapValueTree<V, F, O>
[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

Auto Trait Implementations

impl<V, F, O> Send for FilterMapValueTree<V, F, O> where
    F: Send + Sync,
    O: Send,
    V: Send

impl<V, F, O> !Sync for FilterMapValueTree<V, F, O>