1 2 3 4 5 6 7 8 9
use enum_ext::enum_extend; #[enum_extend(IntType = "u8")] pub enum ComplexAttr { Unit = 1, Payload(u8), } fn main() {}