CosmWasm / serde-json-wasm

serde_json for Wasm programs (small, deterministic, no floats)
Apache License 2.0
30 stars 15 forks source link

Serialize unit structs as null #21

Closed maurolacy closed 3 years ago

maurolacy commented 3 years ago

Add a helper for serialization of unit structs. These are just zero-sized structs (RFC-1506), so it makes sense to serialize them to an empty ("{}") struct.

Update: Added deserialization support.

Update2: Serialize / Deserialize unit structs to / from null.

Closes #18.