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