Enum purescript_corefn::LiteralBinder [−][src]
pub enum LiteralBinder {
Array {
value: Vec<Binder>,
},
Boolean {
value: bool,
},
Char {
value: char,
},
Int {
value: i64,
},
Number {
value: f64,
},
Object {
value: Vec<(String, Binder)>,
},
String {
value: String,
},
}Variants
ArrayFields of Array
value: Vec<Binder> |
BooleanFields of Boolean
value: bool |
CharFields of Char
value: char |
IntFields of Int
value: i64 |
NumberFields of Number
value: f64 |
ObjectFields of Object
value: Vec<(String, Binder)> |
StringFields of String
value: String |
Trait Implementations
impl Debug for LiteralBinder[src]
impl Debug for LiteralBinderAuto Trait Implementations
impl Send for LiteralBinder
impl Send for LiteralBinderimpl Sync for LiteralBinder
impl Sync for LiteralBinder