macro_rules! impl_display_with_writeable {
    ($type:ty) => { ... };
}
Expand description

Implements Display for types that implement 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.