1 2 3 4 5 6 7 8 9 10
use superbitty::BitFieldCompatible; #[derive(BitFieldCompatible)] enum WithPayload { A(()), B, C { value: i32 }, } fn main() {}