Expand description
Grammar tokens representing the stable Rust programming language, closely following The Rust Reference.
Corrections in that regard are not automatically considered breaking changes, unless they became necessary due to a change in Rust and reduce what is considered valid.
Breaking changes to the API are considered breaking as normal.
Note that unstable grammar may be accidentally accepted in some cases.
Ceasing to accept unstable grammar is not by itself considered a breaking change for Loess.
Structs§
- As
as
- Async
async
- Await
await
- Box
box
- Colon
:
- Comma
,
- Const
const
- Curly
Braces {
T
}
- Dot
.
- DotDot
..
- For
for
- Identifier
- IDENTIFIER
- In
in
- Let
let
- Or
|
- Parentheses
(
T
)
- Pub
pub
- RArrow
->
- RawString
Literal - RAW_STRING_LITERAL:
r
#
n ≥ 0"
…"
#
n - Self
Lowercase self
- Semi
;
- Square
Brackets [
T
]
- String
Literal - STRING_LITERAL:
"
…"
- Struct
struct
- Visibility
- Visibility:
pub
(
T
)
?