Crate loess_rust

Source
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
CurlyBraces
{ T }
Dot
.
DotDot
..
For
for
Identifier
IDENTIFIER
In
in
Let
let
Or
|
Parentheses
( T )
Pub
pub
RArrow
->
RawStringLiteral
RAW_STRING_LITERAL: r#n ≥ 0""#n
SelfLowercase
self
Semi
;
SquareBrackets
[ T ]
StringLiteral
STRING_LITERAL: ""
Struct
struct
Visibility
Visibility: pub ( T )?

Enums§

AnyStringLiteral
StringLiteral | RawStringLiteral

Functions§

is_reserved_keyword
See https://doc.rust-lang.org/stable/reference/keywords.html#reserved-keywords as of 2025-04-13.
is_strict_keyword
See https://doc.rust-lang.org/stable/reference/keywords.html#strict-keywords as of 2025-04-13.