Type Alias Become
Source pub type Become<A, Ph = Never> = Step<Ph, Exit<A>>;
pub enum Become<A, Ph = Never> {
Continue,
Goto(Ph),
Stop(Exit<A>),
}
Keep the current behavior; poll for the next event.
Transition to another phase from the menu (no-op when already there).
Stop after this reaction, with the carried reason.