/// Definitions for all state-like functionality.
pubmodstate_defs{/// A module that holds the struct `StateMaster`. The state master is a
/// struct that holds a single state as a gateway into the state machine.
pubmodstate_master;pubmodtrait_defs{/// A module for the `StartState` trait. This is the first state the
/// state master will use for entrance into the state machine.
pubmodstart_state;/// A module for the `State` trait. The state is the subunit for the
/// state machine.
pubmodstate;}}pubusestate_defs::{state_master::StateMaster,trait_defs::{start_state::StartState,state::State},};