pub type ParserFn<'lex, T, E> = fn(lex: RefLexer<'_>) -> Parser<'_, T, E>;
Represents a typical parser function signature that takes a lexer reference and returns a Parser result.
Parser