Expand description
TOML lexer and parser
Characteristics:
- Error recovery
- Lazy validation
forbid(unsafe)
by default, requiring theunsafe
feature otherwiseno_std
support, including putting users in charge of allocation choices (including not allocating)
Full parsing is broken into three phases:
- Lexing tokens
- Parsing tokens (push parser)
- Organizing the physical layout into the logical layout, including decoding keys and values
Modules§
Structs§
Enums§
Traits§
- Error
Sink - Source
Index - A helper trait used for indexing operations on
Source