Skip to main content

ParserFn

Type Alias ParserFn 

Source
pub type ParserFn<'lex, T, E> = fn(lex: RefLexer<'_>) -> Parser<'_, T, E>;
Expand description

Represents a typical parser function signature that takes a lexer reference and returns a Parser result.