Struct fuzzcheck_mutators::Tuple2Mutator[][src]

pub struct Tuple2Mutator<T0, T1, M0, M1> where
    T0: Clone,
    M0: Mutator<T0>,
    T1: Clone,
    M1: Mutator<T1>, 
{ pub mutator_0: M0, pub mutator_1: M1, // some fields omitted }

Fields

mutator_0: M0mutator_1: M1

Implementations

impl<T0, T1, M0, M1> Tuple2Mutator<T0, T1, M0, M1> where
    T0: Clone,
    M0: Mutator<T0>,
    T1: Clone,
    M1: Mutator<T1>, 
[src]

pub fn new(mutator_0: M0, mutator_1: M1) -> Self[src]

pub fn replacing_mutator_0<M>(self, mutator: M) -> Tuple2Mutator<T0, T1, M, M1> where
    M: Mutator<T0>, 
[src]

pub fn replacing_mutator_1<M>(self, mutator: M) -> Tuple2Mutator<T0, T1, M0, M> where
    M: Mutator<T1>, 
[src]

Trait Implementations

impl<T0, T1, M0, M1> Default for Tuple2Mutator<T0, T1, M0, M1> where
    T0: Clone,
    M0: Mutator<T0>,
    T1: Clone,
    M1: Mutator<T1>,
    M0: Default,
    M1: Default
[src]

impl<T, T0, T1, M0, M1> TupleMutator<T, Tuple2<T0, T1>> for Tuple2Mutator<T0, T1, M0, M1> where
    T: Clone,
    T0: Clone + 'static,
    M0: Mutator<T0>,
    T1: Clone + 'static,
    M1: Mutator<T1>,
    T: TupleStructure<Tuple2<T0, T1>>, 
[src]

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

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

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

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

Auto Trait Implementations

impl<T0, T1, M0, M1> !RefUnwindSafe for Tuple2Mutator<T0, T1, M0, M1>[src]

impl<T0, T1, M0, M1> Send for Tuple2Mutator<T0, T1, M0, M1> where
    M0: Send,
    M1: Send,
    T0: Send,
    T1: Send
[src]

impl<T0, T1, M0, M1> !Sync for Tuple2Mutator<T0, T1, M0, M1>[src]

impl<T0, T1, M0, M1> Unpin for Tuple2Mutator<T0, T1, M0, M1> where
    M0: Unpin,
    M1: Unpin,
    T0: Unpin,
    T1: Unpin
[src]

impl<T0, T1, M0, M1> UnwindSafe for Tuple2Mutator<T0, T1, M0, M1> where
    M0: UnwindSafe,
    M1: UnwindSafe,
    T0: UnwindSafe,
    T1: 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.