Crate rainbow_pest

Crate rainbow_pest 

Source

Re-exports§

pub use pest;

Modules§

ast

Structs§

Error
Parse-related error type.
HexColor
An RGB color represented in hexadecimal.
OperatorDeprecated
Infix operator used in PrecClimber.
Pair
A matching pair of Tokens and everything between them.
Pairs
An iterator over Pairs. It is created by pest::state and Pair::into_inner.
ParserConfig
PrecClimberDeprecated
List of operators and precedences, which can perform precedence climbing on infix expressions contained in a Pairs. The token pairs contained in the Pairs should start with a primary pair and then alternate between an operator and a primary.
RainbowParser
Span
A span over a &str. It is created from either two Positions or from a Pair.

Enums§

AssocDeprecated
Associativity of an Operator.
Rule

Traits§

Parser
A trait with a single method that parses strings.