Trait topdown::Parser [] [src]

pub trait Parser<T> {
    fn _parse(&self, cs: &mut CharSeq) -> ParserResult<T>;

    fn parse(&self, cs: &mut CharSeq) -> ParserResult<T> { ... }
    fn lookahead(&self, cs: &mut CharSeq) -> bool { ... }
}

Required Methods

Provided Methods

Implementors