Serialization
Recipe | Crates | Categories |
---|---|---|
Serialize JSON | ||
monostate | ||
serde-ignored |
[serde.incl: title (P1)](https://github.com/john-cd/rust_howto/issues/351)
De facto standard serialization library. Use in conjunction with sub-crates like serde_json for the specific format that you are using.
fn main() { todo!(); }
Serialize JSON
fn main() { todo!(); }
See also
monostate
This library implements a type macro for a zero-sized type that is Serde deserializable only from one specific value.
fn main() { todo!(); }
serde-ignored
fn main() { todo!(); }
[serde: write (P1)](https://github.com/john-cd/rust_howto/issues/352)
dedupe JSON with complex.md Supported formats