Enum static_analyser::parse::LiteralKind [] [src]

pub enum LiteralKind {
    Integer(usize),
    Decimal(f64),
    String(String),
}

Variants

Trait Implementations

impl Debug for LiteralKind
[src]

Formats the value using the given formatter.

impl Clone for LiteralKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LiteralKind
[src]

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

This method tests for !=.

impl From<usize> for LiteralKind
[src]

Performs the conversion.

impl From<f64> for LiteralKind
[src]

Performs the conversion.