1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//! Example modules for demonstrating the usage of the YAML serializer.
//!
//! This module contains example modules that demonstrate the usage of the YAML
//! serializer provided by the `serde_yml` crate. Each example module demonstrates
//! a different aspect of the serializer, such as serializing basic types, structs,
//! enums, and collections.
//!
/// This module contains the `basic` example.
pub
/// This module contains the `collections` example.
pub
/// This module contains the `complex_nested` example.
pub
/// This module contains the `custom_serialization.rs` example.
pub
/// This module contains the `enums` example.
pub
/// This module contains the `error_handling` example.
pub
/// This module contains the `optional_and_default` example.
pub
/// This module contains the `structs` example.
pub
/// The main function that runs all the example modules.
pub