Trait oni_comb_parser_rs::prelude::PeekParser

source ·
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,

Object Safety§

This trait is not object safe.

Implementors§

source§

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