Docs.rs
pkl-parser-0.8.1
pkl-parser 0.8.1
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
DevYatsu
Dependencies
pest ^2.7.11
normal
pest_derive ^2.7.11
normal
regex ^1.10.6
dev
reqwest ^0.12.5
dev
select ^0.6.0
dev
serde_json ^1.0
dev
Versions
2.84%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
pkl_
parser
0.8.1
All Items
Crate Items
Structs
Enums
Functions
Crate
pkl_parser
Copy item path
Source
Structs
§
Error
Parse-related error type.
Pair
A matching pair of
Token
s and everything between them.
Pairs
An iterator over
Pair
s. It is created by
pest::state
and
Pair::into_inner
.
PklParser
PklParser
is a parser generated from the
pkl.pest
grammar file. This struct is used to parse input strings according to the rules defined in the grammar.
Enums
§
Rule
Functions
§
parse
Parses the given source string using the
PklParser
and returns a
Pairs
iterator over the parsed tokens.
pratt
Constructs a
PrattParser
for parsing and evaluating expressions with operator precedence and associativity.