pub trait Executor<EM, I, S, Z> {
// Required method
fn run_target(
&mut self,
fuzzer: &mut Z,
state: &mut S,
mgr: &mut EM,
input: &I,
) -> Result<ExitKind, Error>;
}
Expand description
An executor takes the given inputs, and runs the harness/target.