Trait libafl::feedbacks::FeedbackLogic[][src]

pub trait FeedbackLogic<A, B, I, S>: 'static where
    A: Feedback<I, S>,
    B: Feedback<I, S>,
    I: Input
{ fn name() -> &'static str;
fn is_pair_interesting<EM, OT>(
        first: &mut A,
        second: &mut B,
        state: &mut S,
        manager: &mut EM,
        input: &I,
        observers: &OT,
        exit_kind: &ExitKind
    ) -> Result<bool, Error>
    where
        EM: EventFirer<I, S>,
        OT: ObserversTuple<I, S>
; }

Required methods

Implementors