Macro serde_with_root

Source
macro_rules! serde_with_root {
    ($root:tt : $inner:ty) => { ... };
}
Expand description

Helper macro that will generate both the Serialize and Deserialize implementations with an alternate root key. This is the same as manually calling both deserialize_with_root! and serialize_with_root!.