Struct proptest::collection::HashMapValueTree[][src]

pub struct HashMapValueTree<K, V>(_)
where
    K: ValueTree,
    V: ValueTree,
    K::Value: Hash + Eq
;

ValueTree corresponding to HashMapStrategy.

Trait Implementations

impl<K: Clone, V: Clone> Clone for HashMapValueTree<K, V> where
    K: ValueTree,
    V: ValueTree,
    K::Value: Hash + Eq
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<K: Debug, V: Debug> Debug for HashMapValueTree<K, V> where
    K: ValueTree,
    V: ValueTree,
    K::Value: Hash + Eq
[src]

Formats the value using the given formatter. Read more

impl<K, V> ValueTree for HashMapValueTree<K, V> where
    K: ValueTree,
    V: ValueTree,
    K::Value: Hash + Eq
[src]

The type of the value produced by this ValueTree.

Returns the current value.

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

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> Send for HashMapValueTree<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for HashMapValueTree<K, V> where
    K: Sync,
    V: Sync