Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
e52270438bc2aa8fca0cbe0f20e2246977601885
/
.
/
crates
/
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
>),
}