Struct fuzzcheck_mutators::VecMutator[][src]

pub struct VecMutator<T: Clone, M: Mutator<T>> {
    pub rng: Rng,
    pub m: M,
    // some fields omitted
}

Fields

rng: Rngm: M

Implementations

impl<T: Clone, M: Mutator<T>> VecMutator<T, M>[src]

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

Trait Implementations

impl<T: Clone, M: Mutator<T>> Default for VecMutator<T, M> where
    M: Default
[src]

impl<T: Clone, M: Mutator<T>> Mutator<Vec<T, Global>> for VecMutator<T, M>[src]

type Cache = VecMutatorCache<M::Cache>

type MutationStep = MutationStep<M::MutationStep>

type ArbitraryStep = bool

type UnmutateToken = UnmutateVecToken<T, M>

Auto Trait Implementations

impl<T, M> !RefUnwindSafe for VecMutator<T, M>[src]

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

impl<T, M> !Sync for VecMutator<T, M>[src]

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

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