Finite state machines in rust; bendns fork to add types.
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -121,7 +121,7 @@ pub trait StateMachineImpl { /// The input alphabet. type Input; /// The set of possible states. - type State: Copy; + type State; /// The output alphabet. type Output; /// The initial state of the machine. |