Modulesยง
- debug_
impls ๐ - parsing ๐
- printing ๐
- value ๐
Macrosยง
- lit_
extra_ ๐traits
Structsยง
- LitBool
- A boolean literal:
true
orfalse
. - LitByte
- A byte literal:
b'f'
. - LitByte
Str - A byte string literal:
b"foo"
. - LitCStr
- A nul-terminated C-string literal:
c"foo"
. - LitChar
- A character literal:
'a'
. - LitFloat
- A floating point literal:
1f64
or1.0e10f64
. - LitFloat
Repr ๐ - LitInt
- An integer literal:
1
or1u16
. - LitInt
Repr ๐ - LitRepr ๐
- LitStr
- A UTF-8 string literal:
"foo"
.
Enumsยง
- Lit
- A Rust literal such as a string or integer or boolean.