Struct proptest::collection::HashMapValueTree
source · [−]Expand description
ValueTree
corresponding to HashMapStrategy
.
Trait Implementations
sourceimpl<K: Clone, V: Clone> Clone for HashMapValueTree<K, V> where
K: ValueTree,
V: ValueTree,
K::Value: Hash + Eq,
impl<K: Clone, V: Clone> Clone for HashMapValueTree<K, V> where
K: ValueTree,
V: ValueTree,
K::Value: Hash + Eq,
sourcefn clone(&self) -> HashMapValueTree<K, V>
fn clone(&self) -> HashMapValueTree<K, 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<K: Debug, V: Debug> Debug for HashMapValueTree<K, V> where
K: ValueTree,
V: ValueTree,
K::Value: Hash + Eq,
impl<K: Debug, V: Debug> Debug for HashMapValueTree<K, V> where
K: ValueTree,
V: ValueTree,
K::Value: Hash + Eq,
sourceimpl<K, V> ValueTree for HashMapValueTree<K, V> where
K: ValueTree,
V: ValueTree,
K::Value: Hash + Eq,
impl<K, V> ValueTree for HashMapValueTree<K, V> where
K: ValueTree,
V: ValueTree,
K::Value: Hash + Eq,
type Value = HashMap<<K as ValueTree>::Value, <V as ValueTree>::Value, RandomState>
type Value = HashMap<<K as ValueTree>::Value, <V as ValueTree>::Value, RandomState>
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<K, V> RefUnwindSafe for HashMapValueTree<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for HashMapValueTree<K, V> where
K: Send,
V: Send,
impl<K, V> Sync for HashMapValueTree<K, V> where
K: Sync,
V: Sync,
impl<K, V> Unpin for HashMapValueTree<K, V> where
K: Unpin,
V: Unpin,
impl<K, V> UnwindSafe for HashMapValueTree<K, V> where
K: UnwindSafe,
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