custom_debug_derive
Derive Debug with a custom format per field.
Usage
extern crate custom_debug_derive;
use fmt;
Would print something like
Foo {
n: 42 things,
m: 0xAB
}
Derive Debug with a custom format per field.
extern crate custom_debug_derive;
use fmt;
Would print something like
Foo {
n: 42 things,
m: 0xAB
}