pub trait FiniteAutomata<T>: Sized {
    type State;

    // Required method
    fn get_next(self, c: char) -> GetNextResult<T, Self>;
}

Required Associated Types§

source

type State

A data type which holds state under the trie

Required Methods§

source

fn get_next(self, c: char) -> GetNextResult<T, Self>

Implementors§