Struct proptest::strategy::UnionValueTree
source · [−]pub struct UnionValueTree<T: Strategy> { /* private fields */ }
Expand description
ValueTree
corresponding to Union
.
Trait Implementations
sourceimpl<T: Strategy> ValueTree for UnionValueTree<T>
impl<T: Strategy> ValueTree for UnionValueTree<T>
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<T> !RefUnwindSafe for UnionValueTree<T>
impl<T> Send for UnionValueTree<T> where
T: Send + Sync,
<T as Strategy>::Tree: Send,
impl<T> Sync for UnionValueTree<T> where
T: Send + Sync,
<T as Strategy>::Tree: Sync,
impl<T> Unpin for UnionValueTree<T> where
<T as Strategy>::Tree: Unpin,
impl<T> !UnwindSafe for UnionValueTree<T>
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