oni_comb_parser_rs/extension/parser/
cache_parser.rsuse crate::core::ParserRunner;
use std::fmt::Debug;
pub trait CacheParser<'a>: ParserRunner<'a> {
fn cache(self) -> Self::P<'a, Self::Input, Self::Output>
where
Self::Input: Clone + 'a,
Self::Output: Clone + Debug + 'a;
}