Type Alias libafl::feedbacks::FastAndFeedback

source ·
pub type FastAndFeedback<A, B, S> = CombinedFeedback<A, B, LogicFastAnd, S>;
Expand description

Combine two feedbacks with an fast AND operation, might skip calling feedbacks functions if not necessary to conclude the result

Aliased Type§

struct FastAndFeedback<A, B, S> {
    pub first: A,
    pub second: B,
    /* private fields */
}

Fields§

§first: A

First Feedback

§second: B

Second Feedback