derive_more_preview 0.1.0

Adds #[derive(x)] macros for more traits
1
2
3
4
5
6
7
#[derive(derive_more::Debug)]
#[debug(bound = "String: std::fmt::Display")]
pub struct Foo {
    bar: String,
}

fn main() {}