Type Alias FastAndFeedback

Source
pub type FastAndFeedback<A, B> = CombinedFeedback<A, B, LogicFastAnd>;
Expand description

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

Aliased Type§

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

Fields§

§first: A

First Feedback

§second: B

Second Feedback