Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
5facdb4937f833edc577f7159a5ad2b322fb07e6
/
.
/
crates
/
winnow
/
examples
/
json
/
json.rs
blob: 26111712a9b9f8d3cd1849178f1fbb28311c6e72 [
file
] [
log
] [
blame
]
use
std
::
collections
::
HashMap
;
#[
derive
(
Debug
,
PartialEq
,
Clone
)]
pub
(
crate
)
enum
JsonValue
{
Null
,
Boolean
(
bool
),
Str
(
String
),
Num
(
f64
),
Array
(
Vec
<
JsonValue
>),
Object
(
HashMap
<
String
,
JsonValue
>),
}