pub type StateMachineResult<S, E> = Result<S, StateMachineError<S, E>>;Expand description
Result returned by event-triggering state machine operations.
S is the state type and E is the event type.
Aliased Type§
pub enum StateMachineResult<S, E> {
Ok(S),
Err(StateMachineError<S, E>),
}