pub trait Scope<Q, S> {
// Required methods
fn current_state(&self) -> &State<Q>;
fn current_symbol(&self) -> &S;
}
Expand description
The Scope
trait is used to describe objects containing information or references to the
current state and symbol of a Turing machine.