Enum sn0int_std::json::LuaJsonValue [−][src]
pub enum LuaJsonValue {
Null,
Bool(bool),
Number(Number),
String(String),
Array(Vec<LuaJsonValue>),
Object(HashMap<String, LuaJsonValue>),
}Variants
Null
Bool(bool)
Tuple Fields
0: boolNumber(Number)
Tuple Fields
0: NumberString(String)
Tuple Fields
0: StringArray(Vec<LuaJsonValue>)
Tuple Fields
0: Vec<LuaJsonValue>Object(HashMap<String, LuaJsonValue>)
Tuple Fields
0: HashMap<String, LuaJsonValue>Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.