simple_state_machine 0.1.0

A simple definition of a state machine
Documentation
1
2
3
4
5
6
7
use crate::state_defs::trait_defs::state::State;

/// The first state the state master will use for entrance into the state
/// machine.
pub trait StartState: State {
    fn new() -> Self;
}