Enum syntax::ast::LitKind[][src]

pub enum LitKind {
    Str(SymbolStrStyle),
    ByteStr(Lrc<Vec<u8>>),
    Byte(u8),
    Char(char),
    Int(u128LitIntType),
    Float(SymbolFloatTy),
    FloatUnsuffixed(Symbol),
    Bool(bool),
}

Literal kind.

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

Variants

A string literal ("foo")

A byte string (b"foo")

A byte char (b'f')

A character literal ('a')

An integer literal (1)

A float literal (1f64 or 1E10f64)

A float literal without a suffix (1.0 or 1.0E10)

A boolean literal

Methods

impl LitKind
[src]

Returns true if this literal is a string and false otherwise.

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

impl Clone for LitKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LitKind
[src]

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

This method tests for !=.

impl Eq for LitKind
[src]

impl Encodable for LitKind
[src]

impl Decodable for LitKind
[src]

impl Hash for LitKind
[src]

Feeds this value into the given [Hasher]. Read more

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

impl Debug for LitKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for LitKind

impl !Sync for LitKind