[][src]Crate jsonxs

Offers simple API to serialize existing data structure into JSON. Instead of defining dedicated (serde-annotated) structures, and writing code that fills them prior save, you just save what you have, directly.

Structs

JsonXsSerializer

JSON serializer with eXtra Small memory footprint. Very immature, experimental code. The main idea is that application data structure is NOT duplicated into another one, just for the purpose of saving JSON. Instead, JSON is generated by calls to this api, and client is responsible for making calls in proper sequence. JsonFx only helps with basic stuff like tokenization.

Enums

JsonXsValue

JSON typed value representation.