This is what I have in mind at the moment (but we should try to reduce the number of topics by merging some of them)
Feedback is welcome!
Order-wise, this chapter should be after the "hashmap"/"treemap" chapters.
The structure of the chapter should look like this (some topics are still missing):
.
|-- `Json` -> The `Json` enum and its variants
| |-- Decoding -> `json::from_str` + `BuilderError`
| |-- `ToJson`` -> struct -> `Json`
| `-- Stringify??? -> `Json` -> `String`
|-- `Decoder` -> `Json` -> `Decoder` -> `T` - where `T` = `Vec`, `String`, `HashMap`, etc
|-- `Decodable` -> `#[deriving(Decodable)]`
| `-- Custom??? -> Manually implement `Decodable`
`-- `Encodable` -> `#[deriving(Encodable)]`, `str_encode`
`-- Custom??? -> Manually implement `Encodable`
@vojtechkral is working on this