Struct fuzzcheck_mutators::TupleMutatorWrapper[][src]

pub struct TupleMutatorWrapper<T, M, TupleKind> where
    T: Clone + 'static,
    TupleKind: RefTypes,
    T: TupleStructure<TupleKind>,
    M: TupleMutator<T, TupleKind>, 
{ pub mutator: M, // some fields omitted }

Fields

mutator: M

Implementations

impl<T, M, TupleKind> TupleMutatorWrapper<T, M, TupleKind> where
    T: Clone + 'static,
    TupleKind: RefTypes,
    T: TupleStructure<TupleKind>,
    M: TupleMutator<T, TupleKind>, 
[src]

pub fn new(mutator: M) -> Self[src]

Trait Implementations

impl<T, M, TupleKind> Default for TupleMutatorWrapper<T, M, TupleKind> where
    T: Clone + 'static,
    TupleKind: RefTypes,
    T: TupleStructure<TupleKind>,
    M: TupleMutator<T, TupleKind>,
    M: Default
[src]

impl<T, M, TupleKind> Mutator<T> for TupleMutatorWrapper<T, M, TupleKind> where
    T: Clone + 'static,
    TupleKind: RefTypes,
    T: TupleStructure<TupleKind>,
    M: TupleMutator<T, TupleKind>, 
[src]

type Cache = M::Cache

type MutationStep = M::MutationStep

type ArbitraryStep = M::ArbitraryStep

type UnmutateToken = M::UnmutateToken

Auto Trait Implementations

impl<T, M, TupleKind> RefUnwindSafe for TupleMutatorWrapper<T, M, TupleKind> where
    M: RefUnwindSafe,
    T: RefUnwindSafe,
    TupleKind: RefUnwindSafe
[src]

impl<T, M, TupleKind> Send for TupleMutatorWrapper<T, M, TupleKind> where
    M: Send,
    T: Send,
    TupleKind: Send
[src]

impl<T, M, TupleKind> Sync for TupleMutatorWrapper<T, M, TupleKind> where
    M: Sync,
    T: Sync,
    TupleKind: Sync
[src]

impl<T, M, TupleKind> Unpin for TupleMutatorWrapper<T, M, TupleKind> where
    M: Unpin,
    T: Unpin,
    TupleKind: Unpin
[src]

impl<T, M, TupleKind> UnwindSafe for TupleMutatorWrapper<T, M, TupleKind> where
    M: UnwindSafe,
    T: UnwindSafe,
    TupleKind: 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.