Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
vendor
/
winnow
/
examples
/
json
/
json.rs
blob: 6912d60e3f308589dcacde7f0bdb9bae8927449c [
file
] [
log
] [
blame
]
use
std
::
collections
::
HashMap
;
#[
derive
(
Debug
,
PartialEq
,
Clone
)]
pub
enum
JsonValue
{
Null
,
Boolean
(
bool
),
Str
(
String
),
Num
(
f64
),
Array
(
Vec
<
JsonValue
>),
Object
(
HashMap
<
String
,
JsonValue
>),
}