Trait libafl::mutators::scheduled::ComposedByMutations[][src]

pub trait ComposedByMutations<I, MT, S> where
    I: Input,
    MT: MutatorsTuple<I, S>, 
{ fn mutations(&self) -> &MT;
fn mutations_mut(&mut self) -> &mut MT; }
Expand description

A Mutator that composes multiple mutations into one.

Required methods

Get the mutations

Get the mutations (mut)

Implementors