9 lines
163 B
Rust
Raw Normal View History

2020-11-20 16:52:28 +08:00
//! Helper module defining serialization/deserialization support for [`serde`].
2020-07-04 15:39:40 +08:00
2020-07-03 17:19:55 +08:00
pub mod de;
2020-07-03 22:42:56 +08:00
pub mod ser;
2020-07-03 17:19:55 +08:00
mod str;
2020-12-19 19:42:18 +08:00
#[cfg(feature = "metadata")]
pub mod metadata;