pub trait PeekParser<'a>: ParserRunner<'a> {
    // Required method
    fn peek(self) -> Self::P<'a, Self::Input, Self::Output>
       where Self::Output: Debug + 'a;
}

Required Methods§

source

fn peek(self) -> Self::P<'a, Self::Input, Self::Output>where Self::Output: Debug + 'a,

Implementors§

source§

impl<'a, I, A> PeekParser<'a> for Parser<'a, I, A>