macro_rules! impl_display_with_writeable { ($type:ty) => { ... }; }
Implements Display for types that implement Writeable.
Display
Writeable
It’s recommended to do this for every Writeable type, as it will add support for core::fmt features like fmt!, print!, write!, etc.
core::fmt
fmt!
print!
write!