Struct proptest::collection::VecValueTree
source · [−]pub struct VecValueTree<T: ValueTree> { /* private fields */ }
Expand description
ValueTree
corresponding to VecStrategy
.
Trait Implementations
sourceimpl<T: Clone + ValueTree> Clone for VecValueTree<T>
impl<T: Clone + ValueTree> Clone for VecValueTree<T>
sourcefn clone(&self) -> VecValueTree<T>
fn clone(&self) -> VecValueTree<T>
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<T: Debug + ValueTree> Debug for VecValueTree<T>
impl<T: Debug + ValueTree> Debug for VecValueTree<T>
sourceimpl<T: ValueTree> ValueTree for VecValueTree<T>
impl<T: ValueTree> ValueTree for VecValueTree<T>
sourcefn current(&self) -> Vec<T::Value>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
fn current(&self) -> Vec<T::Value>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
Returns the current value.
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 VecValueTree<T> where
T: RefUnwindSafe,
impl<T> Send for VecValueTree<T> where
T: Send,
impl<T> Sync for VecValueTree<T> where
T: Sync,
impl<T> Unpin for VecValueTree<T> where
T: Unpin,
impl<T> UnwindSafe for VecValueTree<T> where
T: 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