Struct proptest::sample::SelectValueTree
source · [−]Expand description
ValueTree
corresponding to Select
.
Trait Implementations
sourceimpl<T: Clone> Clone for SelectValueTree<T> where
T: Clone + Debug + 'static,
impl<T: Clone> Clone for SelectValueTree<T> where
T: Clone + Debug + 'static,
sourcefn clone(&self) -> SelectValueTree<T>
fn clone(&self) -> SelectValueTree<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> ValueTree for SelectValueTree<T> where
T: Clone + Debug + 'static,
impl<T> ValueTree for SelectValueTree<T> where
T: Clone + Debug + 'static,
type Value = T
type Value = T
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<T> RefUnwindSafe for SelectValueTree<T> where
T: RefUnwindSafe,
impl<T> Send for SelectValueTree<T> where
T: Send + Sync,
impl<T> Sync for SelectValueTree<T> where
T: Send + Sync,
impl<T> Unpin for SelectValueTree<T>
impl<T> UnwindSafe for SelectValueTree<T> where
T: RefUnwindSafe,
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