Trait libafl::fuzzer::ExecutionProcessor[][src]

pub trait ExecutionProcessor<I, OT, S> where
    OT: ObserversTuple<I, S>,
    I: Input
{ fn process_execution<EM>(
        &mut self,
        state: &mut S,
        manager: &mut EM,
        input: I,
        observers: &OT,
        exit_kind: &ExitKind,
        send_events: bool
    ) -> Result<(ExecuteInputResult, Option<usize>), Error>
    where
        EM: EventFirer<I, S>
; }
Expand description

Evaluate if an input is interesting using the feedback

Required methods

Evaluate if a set of observation channels has an interesting state

Implementors