nop-json

Crates.ionop-json
lib.rsnop-json
version2.0.5
sourcesrc
created_at2019-12-30 18:35:25.479311
updated_at2021-09-12 21:51:47.419214
descriptionJSON serialization/deserialization (full-featured, modern, optimal, streaming, direct into struct, binary-ready)
homepage
repositoryhttps://github.com/jeremiah-shaulov/nop-json
max_upload_size
id193586
size162,373
Jeremiah Shaulov (jeremiah-shaulov)

documentation

README

nop-json

Documentation crates.io

This is full-featured modern JSON implementation according to ECMA-404 standard.

This crate allows deserialization of JSON Iterator<u8> stream into primitive types (bool, i32, etc.), Strings and any other types that implement special trait called TryFromJson, which can be implemented automatically through #[derive(TryFromJson)] for your structs and enums.

And serialization back to JSON through DebugToJson trait, that acts like Debug, allowing to print your objects with println!() and such. Or through WriteToJson trait that allows to write to a io::Write stream.

This crate allows to read whitespece-separated JSON values from stream in sequence. It also allows to pipe blob strings to a writer.

Documentation

Read on crates.io

Commit count: 36

cargo fmt