Enum gluon_base::ast::Literal [] [src]

pub enum Literal {
    Byte(u8),
    Int(i64),
    Float(f64),
    String(String),
    Char(char),
}

Variants

Trait Implementations

impl Clone for Literal
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Literal
[src]

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

This method tests for !=.

impl Debug for Literal
[src]

Formats the value using the given formatter.