macro_rules! write_primitive {
($method:ident ( $ty:ty )) => { ... };
() => { ... };
}
Expand description
Implements writing primitives to the underlying writer.
Implementor must provide write_str(self, &str) -> Result<(), DeError>
method
macro_rules! write_primitive {
($method:ident ( $ty:ty )) => { ... };
() => { ... };
}
Implements writing primitives to the underlying writer.
Implementor must provide write_str(self, &str) -> Result<(), DeError>
method