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,

Implementors§

source§

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