Enum rustc_ast::ast::LitKind [−][src]
pub enum LitKind {
Str(Symbol, StrStyle),
ByteStr(Lrc<[u8]>),
Byte(u8),
Char(char),
Int(u128, LitIntType),
Float(Symbol, LitFloatType),
Bool(bool),
Err(Symbol),
}
Expand description
Literal kind.
E.g., "foo"
, 42
, 12.34
, or bool
.
Variants
A string literal ("foo"
).
A byte string (b"foo"
).
Byte(u8)
A byte char (b'f'
).
Tuple Fields of Byte
0: u8
Char(char)
A character literal ('a'
).
Tuple Fields of Char
0: char
Int(u128, LitIntType)
An integer literal (1
).
Tuple Fields of Int
0: u128
1: LitIntType
Float(Symbol, LitFloatType)
A float literal (1f64
or 1E10f64
).
Tuple Fields of Float
0: Symbol
1: LitFloatType
Bool(bool)
A boolean literal.
Tuple Fields of Bool
0: bool
Err(Symbol)
Placeholder for a literal that wasn’t well-formed in some way.
Tuple Fields of Err
0: Symbol
Implementations
Converts literal token into a semantic literal.
Attempts to recover a token from semantic literal. This function is used when the original token doesn’t exist (e.g. the literal is created by an AST-based macro) or unavailable (e.g. from HIR pretty-printing).
Returns true
if this literal is byte literal string.
Returns true
if this is a numeric literal.
Returns true
if this literal has no suffix.
Note: this will return true for literals with prefixes such as raw strings and byte strings.
Returns true
if this literal has a suffix.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for LitKind
impl UnwindSafe for LitKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 24 bytes
Size for each variant:
Str
: 11 bytesByteStr
: 23 bytesByte
: 1 byteChar
: 7 bytesInt
: 23 bytesFloat
: 7 bytesBool
: 1 byteErr
: 7 bytes