Trait AsMachine

Source
pub trait AsMachine {
    type State;

    // Required method
    fn as_machine(&self) -> &Machine<Self::State>;
}

Required Associated Types§

Required Methods§

Source

fn as_machine(&self) -> &Machine<Self::State>

Implementors§

Source§

impl<'etable, ES: EtableSet> AsMachine for EtableInterpreter<'etable, ES>

Source§

type State = <ES as EtableSet>::State