Struct proptest::collection::BTreeMapValueTree [] [src]

pub struct BTreeMapValueTree<K, V>(_)
where
    K: ValueTree,
    V: ValueTree,
    K::Value: Ord
;

ValueTree corresponding to BTreeMapStrategy.

Trait Implementations

impl<K: Clone, V: Clone> Clone for BTreeMapValueTree<K, V> where
    K: ValueTree,
    V: ValueTree,
    K::Value: Ord
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<K: Debug, V: Debug> Debug for BTreeMapValueTree<K, V> where
    K: ValueTree,
    V: ValueTree,
    K::Value: Ord
[src]

[src]

Formats the value using the given formatter.

impl<K, V> ValueTree for BTreeMapValueTree<K, V> where
    K: ValueTree,
    V: ValueTree,
    K::Value: Ord
[src]

The type of the value produced by this ValueTree.

[src]

Returns the current value.

[src]

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

[src]

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