Trait derive_finite_automaton::FiniteAutomata[][src]

pub trait FiniteAutomata<T>: Sized {
    type State;
    fn get_next(self, c: char) -> GetNextResult<T, Self>;
}

Associated Types

A data type which holds state under the trie

Required methods

Implementors