pub trait FastParse<'a, T> {
    fn next(&'a self) -> T;
}

Required Methods

Implementors