Type Definition machinae::StateMachineRef [] [src]

type StateMachineRef<A, E, F, S> = StateMachine<Ref<A>, E, F, S>;

A state machine accepting a mutable reference as argument. You need to use this in case you're passing a mutable argument to the state machine, otherwise the compiler will complain.