Type Alias libafl::feedbacks::EagerAndFeedback

source ·
pub type EagerAndFeedback<A, B, S> = CombinedFeedback<A, B, LogicEagerAnd, S>;
Expand description

Combine two feedbacks with an eager AND operation, will call all feedbacks functions even if not necessary to conclude the result

Aliased Type§

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

Fields§

§first: A

First Feedback

§second: B

Second Feedback