pub trait FeedbackLogic<A, B, I, S>: 'static + Debug where
    A: Feedback<I, S>,
    B: Feedback<I, S>,
    I: Input,
    S: HasClientPerfMonitor
{ 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>,
        OT: ObserversTuple<I, S>
; }
Expand description

Logical combination of two feedbacks

Required Methods

The name of this combination

If the feedback pair is interesting

Implementors