pub trait ParserFunction<Args> {
    type Output;

    fn call_parser_function(&self, args: Args) -> Self::Output;
}

Required Associated Types§

Required Methods§

Implementors§