Enum rustc_ap_rustc_ast::ast::LitKind[][src]

pub enum LitKind {
    Str(SymbolStrStyle),
    ByteStr(Lrc<[u8]>),
    Byte(u8),
    Char(char),
    Int(u128LitIntType),
    Float(SymbolLitFloatType),
    Bool(bool),
    Err(Symbol),
}
Expand description

Literal kind.

E.g., "foo", 42, 12.34, or bool.

Variants

A string literal ("foo").

ByteStr(Lrc<[u8]>)

A byte string (b"foo").

Byte(u8)

A byte char (b'f').

Char(char)

A character literal ('a').

An integer literal (1).

A float literal (1f64 or 1E10f64).

Bool(bool)

A boolean literal.

Err(Symbol)

Placeholder for a literal that wasn’t well-formed in some way.

Implementations

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 a string.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.