serdejsonutils

Linux Arm7 Linux x86_64 macOS intel Windows

Utility functions for serde_json::Value. The functions are implemented as traits so all you need is to add the crate to your dependencies in your Cargo.toml.

Requirements

Usage

toml [dependencies] serde-json-utils = "0.2.1"

Example

fn main() { let mut val: Value = fromstr(DATA).unwrap(); val.skipnullandempty();

println!("{:#?}", val);

} ```


License: MIT