Type Alias libafl::feedbacks::EagerOrFeedback

source ·
pub type EagerOrFeedback<A, B, S> = CombinedFeedback<A, B, LogicEagerOr, S>;
Expand description

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

Aliased Type§

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

Fields§

§first: A

First Feedback

§second: B

Second Feedback