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 val() and Error

Enums§

Val
Core json type

Traits§

Unwrap

Functions§

parse
Parses a json value, disregarding whitespace.
See the parse module for more info