Crate jso

Source
Expand description

§Example

let obj = jso::parse(r#"
{
  "Hello": "World"
}
"#).unwrap();
assert_eq!(obj["Hello"], "World".into());
println!("{obj}");

Modules§

parse
This module contains functions for parsing json.
See parse_val() and Error.

Enums§

Val
Core json type

Functions§

parse
Parses any json type, disregarding whitespace.
See the parse module for more info.