macro_rules! impl_serde_str_bin_wrapper {
($ty:ty, $inner:ty) => { ... };
}Expand description
Implement serde serialize and deserialize traits for a type wrapping another type, such that it uses Display and FromStr for human-readable serialization, and binary for non-human readable.