Struct proptest::option::OptionValueTree[][src]

pub struct OptionValueTree<T>(_)
where
    T: ValueTree
;

ValueTree type corresponding to OptionStrategy.

Trait Implementations

impl<T: Clone> Clone for OptionValueTree<T> where
    T: ValueTree,
    T::Value: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for OptionValueTree<T> where
    T: ValueTree,
    T::Value: Debug
[src]

Formats the value using the given formatter. Read more

impl<T> ValueTree for OptionValueTree<T> where
    T: ValueTree
[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<T> Send for OptionValueTree<T> where
    T: Send,
    <T as ValueTree>::Value: Send

impl<T> Sync for OptionValueTree<T> where
    T: Sync,
    <T as ValueTree>::Value: Sync