Trait ParserExt

Source
pub trait ParserExt<I, O, E>: Parser<I, O, E> {
    // Provided method
    fn expect(
        self,
        expected: &'static str,
    ) -> Context<Self, I, O, E, StrContext>
       where Self: Sized,
             I: Stream,
             E: AddContext<I, StrContext> + ParserError<I> { ... }
}

Provided Methods§

Source

fn expect(self, expected: &'static str) -> Context<Self, I, O, E, StrContext>
where Self: Sized, I: Stream, E: AddContext<I, StrContext> + ParserError<I>,

Add a context to the error message.

This is a shorthand for context(StrContext::Expected(StrContextValue::Description(expected))).

Implementors§

Source§

impl<I, O, E, T> ParserExt<I, O, E> for T
where T: Parser<I, O, E>,