EventResponse

Type Alias EventResponse 

Source
pub type EventResponse<E> = ControlFlow<Capture, Propagate<E>>;

Aliased Type§

pub enum EventResponse<E> {
    Continue(Propagate<E>),
    Break(Capture),
}

Variants§

§1.55.0

Continue(Propagate<E>)

Move on to the next phase of the operation as normal.

§1.55.0

Break(Capture)

Exit the operation without running subsequent phases.