Trait charon_lib::name_matcher::parser::ParserExtExt   
source · trait ParserExtExt<I, O, E>: Parser<I, O, E> + Sizedwhere
    I: Clone,
    E: ParseError<I>,{
    // Provided method
    fn followed_by<F, O2>(self, suffix: F) -> impl Parser<I, O, E>
       where F: Parser<I, O2, E> { ... }
}Expand description
Extra methods on parsers.
Provided Methods§
fn followed_by<F, O2>(self, suffix: F) -> impl Parser<I, O, E>where
    F: Parser<I, O2, E>,
Object Safety§
This trait is not object safe.