Is there any possibility to make conditional transition that based on current machine state and input (event) data makes decision whether to transit to NextState or OtherState?
#[state]
pub enum ProcessState {
Init,
NextState,
OtherState,
Finished,
}