Crate parson

Source
Expand description

§Parson

parson is a Rust library for parsing JSON strings into Rust types.

In this crate, a

  • JSON String is parsed into a Rust owned string
  • JSON Number is parsed into a Rust f64
  • JSON Boolean is parsed into a Rust bool
  • JSON Null is not parsable into Rust since there is no Null value

Macros§

json_err

Structs§

JSONArray
JSONBoolean
JSONError
JSONNull
JSONNumber
JSONObject
JSONString
JSONValue

Enums§

JSONType