derive_more
derive_more copied to clipboard
Skip enum variant debug name?
trafficstars
Currently code like this:
#[derive(Debug)]
pub enum Test {
#[debug(skip)] Foo
}
Does not compile. Usually it will print something like Test::Foo, now I just want it to print Test instead.