pub trait CacheParser<'a>: ParserRunner<'a> {
    // Required method
    fn cache(self) -> Self::P<'a, Self::Input, Self::Output>
       where Self::Input: Clone + 'a,
             Self::Output: Clone + Debug + 'a;
}

Required Methods§

source

fn cache(self) -> Self::P<'a, Self::Input, Self::Output>where Self::Input: Clone + 'a, Self::Output: Clone + Debug + 'a,

Implementors§

source§

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