Struct fuzzcheck_mutators::Tuple3[][src]

pub struct Tuple3<T0: 'static, T1: 'static, T2: 'static> { /* fields omitted */ }

Trait Implementations

impl<T0: 'static, T1: 'static, T2: 'static> RefTypes for Tuple3<T0, T1, T2>[src]

type Owned = (T0, T1, T2)

type Ref = (&'a T0, &'a T1, &'a T2)

type Mut = (&'a mut T0, &'a mut T1, &'a mut T2)

impl<T, T0, T1, T2, M0, M1, M2> TupleMutator<T, Tuple3<T0, T1, T2>> for Tuple3Mutator<T0, T1, T2, M0, M1, M2> where
    T: Clone,
    T0: Clone + 'static,
    M0: Mutator<T0>,
    T1: Clone + 'static,
    M1: Mutator<T1>,
    T2: Clone + 'static,
    M2: Mutator<T2>,
    T: TupleStructure<Tuple3<T0, T1, T2>>, 
[src]

type Cache = Cache<<M0 as Mutator<T0>>::Cache, <M1 as Mutator<T1>>::Cache, <M2 as Mutator<T2>>::Cache>

type MutationStep = MutationStep<<M0 as Mutator<T0>>::MutationStep, <M1 as Mutator<T1>>::MutationStep, <M2 as Mutator<T2>>::MutationStep>

type ArbitraryStep = ArbitraryStep<<M0 as Mutator<T0>>::ArbitraryStep, <M1 as Mutator<T1>>::ArbitraryStep, <M2 as Mutator<T2>>::ArbitraryStep>

type UnmutateToken = UnmutateToken<<M0 as Mutator<T0>>::UnmutateToken, <M1 as Mutator<T1>>::UnmutateToken, <M2 as Mutator<T2>>::UnmutateToken>

impl<T0: 'static, T1: 'static, T2: 'static> TupleStructure<Tuple3<T0, T1, T2>> for (T0, T1, T2)[src]

Auto Trait Implementations

impl<T0, T1, T2> RefUnwindSafe for Tuple3<T0, T1, T2> where
    T0: RefUnwindSafe,
    T1: RefUnwindSafe,
    T2: RefUnwindSafe
[src]

impl<T0, T1, T2> Send for Tuple3<T0, T1, T2> where
    T0: Send,
    T1: Send,
    T2: Send
[src]

impl<T0, T1, T2> Sync for Tuple3<T0, T1, T2> where
    T0: Sync,
    T1: Sync,
    T2: Sync
[src]

impl<T0, T1, T2> Unpin for Tuple3<T0, T1, T2> where
    T0: Unpin,
    T1: Unpin,
    T2: Unpin
[src]

impl<T0, T1, T2> UnwindSafe for Tuple3<T0, T1, T2> where
    T0: UnwindSafe,
    T1: UnwindSafe,
    T2: UnwindSafe
[src]

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, 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.