Trait oni_comb_parser_rs::prelude::CacheParser

source ·
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,

Object Safety§

This trait is not object safe.

Implementors§

source§

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