Module parce::parser[][src]

Expand description

Contains traits for parsing, and the skeleton of the packrat parser algorithm used by the parsers.

Modules

automata

Contains the automata used by the parser algorithm, and their basic operations.

Enums

ParseCompletion

Indicates how much of the input was used by a call to Parse::parse_max.

Traits

Parse

Trait for parsing types that implement ToString into types that implement Parseable.

Parseable

Trait implemented by the parce_macros::parser attribute macro.