macro_rules! encoder_newtype {
(
$(#[$($struct_attr:tt)*])*
pub struct $name:ident$(<$lt:lifetime>)?($encoder:ty);
) => { ... };
}Expand description
Implements a newtype around an encoder which implements the
Encoder trait by forwarding to the wrapped encoder.