1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! _(SERDE)_ Serialization and deserialization support for [`serde`](https://crates.io/crates/serde). //! Exported under the `serde` feature only. mod de; mod deserialize; mod ser; mod serialize; mod str; #[cfg(feature = "metadata")] mod metadata; pub use de::from_dynamic; pub use ser::to_dynamic;