pub trait CacheParsers: Parsers {
    // Required method
    fn cache<'a, I, A>(parser: Self::P<'a, I, A>) -> Self::P<'a, I, A>
       where I: Clone + 'a,
             A: Clone + Debug + 'a;
}

Required Methods§

source

fn cache<'a, I, A>(parser: Self::P<'a, I, A>) -> Self::P<'a, I, A>where I: Clone + 'a, A: Clone + Debug + 'a,

Implementors§