pub trait StagesTuple<E, EM, S, Z> {
    fn perform_all(
        &mut self,
        fuzzer: &mut Z,
        executor: &mut E,
        state: &mut S,
        manager: &mut EM,
        corpus_idx: usize
    ) -> Result<(), Error>; }
Expand description

A tuple holding all Stages used for fuzzing.

Required Methods

Performs all Stages in this tuple

Implementations on Foreign Types

Implementors