Enum purescript_corefn::Literal[][src]

pub enum Literal {
    Array {
        value: Vec<Expression>,
    },
    Boolean {
        value: bool,
    },
    Char {
        value: char,
    },
    Int {
        value: i64,
    },
    Number {
        value: f64,
    },
    Object {
        value: Vec<(String, Expression)>,
    },
    String {
        value: String,
    },
}

Variants

Fields of Array

Fields of Boolean

Fields of Char

Fields of Int

Fields of Number

Fields of Object

Fields of String

Trait Implementations

impl Debug for Literal
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Literal

impl Sync for Literal