rs_state_machine 2.0.0

A business-oriented state machine library
Documentation
1
2
3
4
5
6
7
8
/// Representation and actions for the State Machine.
pub mod machine;
/// Representation and actions of transitions in the State Machine.
pub mod transition;
/// Representation and actions of the errors that can occur during usage of the library.
pub mod errors;
/// Representation and actions of structures that can be transitioned by the State Machine.
pub mod transitionable;