[][src]Struct proptest::strategy::FlattenValueTree

pub struct FlattenValueTree<S: ValueTree> where
    S::Value: Strategy
{ /* fields omitted */ }

The ValueTree produced by Flatten.

Trait Implementations

impl<S: ValueTree> Clone for FlattenValueTree<S> where
    S::Value: Strategy + Clone,
    S: Clone,
    <S::Value as Strategy>::Tree: Clone
[src]

impl<S: ValueTree> Debug for FlattenValueTree<S> where
    S::Value: Strategy,
    S: Debug,
    <S::Value as Strategy>::Tree: Debug
[src]

impl<S: ValueTree> ValueTree for FlattenValueTree<S> where
    S::Value: Strategy
[src]

type Value = <S::Value as Strategy>::Value

The type of the value produced by this ValueTree.

Auto Trait Implementations

impl<S> !RefUnwindSafe for FlattenValueTree<S>

impl<S> Send for FlattenValueTree<S> where
    S: Send,
    <<S as ValueTree>::Value as Strategy>::Tree: Send

impl<S> Sync for FlattenValueTree<S> where
    S: Sync,
    <<S as ValueTree>::Value as Strategy>::Tree: Sync

impl<S> Unpin for FlattenValueTree<S> where
    S: Unpin,
    <<S as ValueTree>::Value as Strategy>::Tree: Unpin

impl<S> !UnwindSafe for FlattenValueTree<S>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,