Struct proptest::strategy::ShuffleValueTree [−][src]
pub struct ShuffleValueTree<V> { /* fields omitted */ }ValueTree shuffling adaptor.
See Strategy::prop_shuffle().
Trait Implementations
impl<V: Clone> Clone for ShuffleValueTree<V>[src]
impl<V: Clone> Clone for ShuffleValueTree<V>fn clone(&self) -> ShuffleValueTree<V>[src]
fn clone(&self) -> ShuffleValueTree<V>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl<V: Debug> Debug for ShuffleValueTree<V>[src]
impl<V: Debug> Debug for ShuffleValueTree<V>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<V: ValueTree> ValueTree for ShuffleValueTree<V> where
V::Value: Shuffleable, [src]
impl<V: ValueTree> ValueTree for ShuffleValueTree<V> where
V::Value: Shuffleable, type Value = V::Value
The type of the value produced by this ValueTree.
fn current(&self) -> V::Value[src]
fn current(&self) -> V::ValueReturns the current value.
fn simplify(&mut self) -> bool[src]
fn simplify(&mut self) -> boolAttempts 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
fn complicate(&mut self) -> bool[src]
fn complicate(&mut self) -> boolAttempts 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> Send for ShuffleValueTree<V> where
V: Send,
impl<V> Send for ShuffleValueTree<V> where
V: Send, impl<V> !Sync for ShuffleValueTree<V>
impl<V> !Sync for ShuffleValueTree<V>