macro_rules! delegate_debug {
($ty:ty) => { ... };
}Expand description
Create an impl of FmtConst delegating to fmt::Debug for types that can deal with it.
Ideally with specialization this could be just one default impl and then specialized where it doesn’t apply.