Trait oni_comb_parser_rs::prelude::CollectParser

source ·
pub trait CollectParser<'a>: ParserRunner<'a> {
    // Required method
    fn collect(self) -> Self::P<'a, Self::Input, &'a [Self::Input]>
       where Self::Output: Debug + 'a;
}

Required Methods§

source

fn collect(self) -> Self::P<'a, Self::Input, &'a [Self::Input]>
where Self::Output: Debug + 'a,

Object Safety§

This trait is not object safe.

Implementors§

source§

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