Struct proptest::strategy::FilterMapValueTree
source · [−]pub struct FilterMapValueTree<V, F, O> { /* private fields */ }
Expand description
ValueTree
corresponding to FilterMap
.
Trait Implementations
sourceimpl<V: Clone + ValueTree, F: Fn(V::Value) -> Option<O>, O> Clone for FilterMapValueTree<V, F, O>
impl<V: Clone + ValueTree, F: Fn(V::Value) -> Option<O>, O> Clone for FilterMapValueTree<V, F, O>
sourceimpl<V: Debug, F, O> Debug for FilterMapValueTree<V, F, O>
impl<V: Debug, F, O> Debug for FilterMapValueTree<V, F, O>
sourceimpl<V: ValueTree, F: Fn(V::Value) -> Option<O>, O: Debug> ValueTree for FilterMapValueTree<V, F, O>
impl<V: ValueTree, F: Fn(V::Value) -> Option<O>, O: Debug> ValueTree for FilterMapValueTree<V, F, O>
type Value = O
type Value = O
The type of the value produced by this ValueTree
.
sourcefn simplify(&mut self) -> bool
fn simplify(&mut self) -> bool
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
sourcefn complicate(&mut self) -> bool
fn complicate(&mut self) -> bool
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> !RefUnwindSafe for FilterMapValueTree<V, F, O>
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>
impl<V, F, O> Unpin for FilterMapValueTree<V, F, O> where
O: Unpin,
V: Unpin,
impl<V, F, O> UnwindSafe for FilterMapValueTree<V, F, O> where
F: RefUnwindSafe,
O: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more