Struct proptest::strategy::ShuffleValueTree
source · [−]pub struct ShuffleValueTree<V> { /* private fields */ }
Expand description
ValueTree
shuffling adaptor.
See Strategy::prop_shuffle()
.
Trait Implementations
sourceimpl<V: Clone> Clone for ShuffleValueTree<V>
impl<V: Clone> Clone for ShuffleValueTree<V>
sourcefn clone(&self) -> ShuffleValueTree<V>
fn clone(&self) -> ShuffleValueTree<V>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<V: Debug> Debug for ShuffleValueTree<V>
impl<V: Debug> Debug for ShuffleValueTree<V>
sourceimpl<V: ValueTree> ValueTree for ShuffleValueTree<V> where
V::Value: Shuffleable,
impl<V: ValueTree> ValueTree for ShuffleValueTree<V> where
V::Value: Shuffleable,
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> !RefUnwindSafe for ShuffleValueTree<V>
impl<V> Send for ShuffleValueTree<V> where
V: Send,
impl<V> !Sync for ShuffleValueTree<V>
impl<V> Unpin for ShuffleValueTree<V> where
V: Unpin,
impl<V> UnwindSafe for ShuffleValueTree<V> where
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