Trait ratatat::Generator[][src]

pub trait Generator<'a>: Any {
    type O: Debug;
    fn generate(ctx: &Context<'a>) -> Rc<dyn Parser<'a, O = Self::O> + 'a>;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors