[][src]Struct smoke::generator::Product3

pub struct Product3<G1, G2, G3, F> { /* fields omitted */ }

Product of 3 generators : G1 x G2 x G3

Trait Implementations

impl<G1: Clone, G2: Clone, G3: Clone, F: Clone> Clone for Product3<G1, G2, G3, F>[src]

impl<O, G1: Generator, G2: Generator, G3: Generator, F> Generator for Product3<G1, G2, G3, F> where
    F: Fn(G1::Item, G2::Item, G3::Item) -> O + Clone
[src]

type Item = O

Type generated by the generator

Auto Trait Implementations

impl<G1, G2, G3, F> RefUnwindSafe for Product3<G1, G2, G3, F> where
    F: RefUnwindSafe,
    G1: RefUnwindSafe,
    G2: RefUnwindSafe,
    G3: RefUnwindSafe

impl<G1, G2, G3, F> Send for Product3<G1, G2, G3, F> where
    F: Send,
    G1: Send,
    G2: Send,
    G3: Send

impl<G1, G2, G3, F> Sync for Product3<G1, G2, G3, F> where
    F: Sync,
    G1: Sync,
    G2: Sync,
    G3: Sync

impl<G1, G2, G3, F> Unpin for Product3<G1, G2, G3, F> where
    F: Unpin,
    G1: Unpin,
    G2: Unpin,
    G3: Unpin

impl<G1, G2, G3, F> UnwindSafe for Product3<G1, G2, G3, F> where
    F: UnwindSafe,
    G1: UnwindSafe,
    G2: UnwindSafe,
    G3: UnwindSafe

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.