Structs§
- Extracted
Token - Struct that represents a token in a specific text.
- NonBoolean
Value - Error value for
parse_boolean()
. Returned if the given string value is not a loose boolean, for instance"yes"
or"true"
. - Parse
Error - An issue that occurred during parsing.
- Parse
Outcome - Parse
Success - Unstructured
Parse Result - Represents the result of an internal parse.
Enums§
- Parse
Error Kind - Token
- Enum that represents the type of a parsed token. For a struct with additional context
surrounding the positioning and content of the token, see
ExtractedToken
.
Functions§
- parse
- Parse through the given tokens and produce an AST.
- parse_
boolean - Parse a boolean string into its corresponding value.
- parse_
internal - Runs the parser, but returns the raw internal results prior to conversion.