Finite state machines in rust; bendns fork to add types.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index cf47bec..2a62405 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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.