Trait oni_comb_parser_rs::prelude::LazyParsers

source ·
pub trait LazyParsers: Parsers {
    // Required method
    fn lazy<'a, I, A, F>(f: F) -> Self::P<'a, I, A>
       where F: Fn() -> Self::P<'a, I, A> + 'a,
             A: Debug + 'a;
}

Required Methods§

source

fn lazy<'a, I, A, F>(f: F) -> Self::P<'a, I, A>
where F: Fn() -> Self::P<'a, I, A> + 'a, A: Debug + 'a,

Object Safety§

This trait is not object safe.

Implementors§