Open simonsilvalauinger opened 3 years ago
Trying to use format_with for Debug within an enum, leads into this error.
use derivative::*; #[derive(Derivative)] #[derivative(Debug)] #[repr(u8)] enum Enum { #[derivative(Debug(format_with = "hex_fmt"))] A, }
Is there a chance to fix this?
Trying to use format_with for Debug within an enum, leads into this error.
Is there a chance to fix this?