1. JSON
    1. Read arbitrary JSON without much preparation
    2. Read simple JSON and deserialize into a struct
    3. Serialize and deserialize HashMap to JSON in Rust
  2. Slides
    1. Serde for JSON
    2. Read and deserialize key-value pair JSON into HashMap
    3. Serialize and deserialize HashMap to JSON in Rust
    4. Deserialize JSON array - a list of string into a Vector
    5. Read Simple JSON file manually
    6. Read Simple JSON file into a struct
    7. Read JSON file using from_reader manually
    8. Read JSON file using from_reader to a struct
    9. Read complex JSON
    10. Read JSON avoid extra fields - deny_unknown_fields
    11. Read JSON: Warn on extra (unknown) fields with serde_ignored
    12. JSON files - missing fields
    13. Read JSON handle missing fields - set defaults
    14. Read JSON with optional fields: Option or default value?
    15. Alias some fields in JSON (handle dash in JSON keys)
    16. Read JSON to Vector
    17. Read lists of JSON structures JSON-lines
    18. JSON serialize struct
    19. Serialize struct and Deserialize JSON
    20. Read and deserialize JSON file where some fields can have arbitrary values
    21. JSON serialize examples
    22. serde manipulate json (change, add)
    23. JSON serialize struct with date
    24. JSON deserialize custom internal struct using "with"
    25. JSON deserialize custom internal struct using "deserialize-with"