Macro write_primitive

Source
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