derive_more icon indicating copy to clipboard operation
derive_more copied to clipboard

Skip enum variant debug name?

Open stevefan1999-personal opened this issue 1 year ago • 0 comments
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.

stevefan1999-personal avatar Sep 28 '24 16:09 stevefan1999-personal