pub type Become<Ph = Never> = Step<Ph, Stopped>;
pub enum Become<Ph = Never> { Continue, Goto(Ph), Stop(Stopped), }
Keep the current behavior; poll for the next event.
Transition to another phase from the menu (no-op when already there).
Select a terminal result. In crate::Become this is the payload-free Stopped marker.
crate::Become
Stopped