customdebugderive

Derive Debug with a custom format per field.

Usage

```rust #[macrouse] extern crate customdebug_derive;

#[derive(CustomDebug)]
struct Foo {
    #[debug(format = "{} things")]
    n: i32,
}

```

Would print something like Foo { n: 42 things }