serde_yml 0.0.12

A robust Rust library that simplifies the serialization and deserialization of Rust data structures to and from YAML format using the widely-used Serde framework.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// The `test_de` module contains tests for the `Deserialize` trait implementations.
pub mod test_de;

/// The `test_debug` module contains tests for the `Debug` trait implementations.
pub mod test_debug;

/// The `test_from` module contains tests for the `From` trait implementations.
pub mod test_from;

/// The `test_index` module contains tests for the `Index` trait implementations.
pub mod test_index;

/// The `test_partial_eq` module contains tests for the `PartialEq` trait implementations.
pub mod test_partial_eq;

/// The `test_tag` module contains tests for the `Tag` trait implementations.
pub mod test_tag;