Enum simd_json::ValueType [−][src]
pub enum ValueType {
Null,
Bool,
I64,
U64,
F64,
String,
Array,
Object,
}
Expand description
Types of JSON values
Variants
Null
null
Bool
a boolean
I64
a signed integer type
U64
a unsigned integer type
F64
a float type
String
a string type
Array
an array
Object
an object
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ValueType
impl UnwindSafe for ValueType
Blanket Implementations
Mutably borrows from an owned value. Read more