pub type EventResponse<E> = ControlFlow<Capture, Propagate<E>>;
pub enum EventResponse<E> { Continue(Propagate<E>), Break(Capture), }
Move on to the next phase of the operation as normal.
Exit the operation without running subsequent phases.