We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
From the docs, this works:
bitflags!( flags Flags: u32 { static FlagA = 0x00000001, static FlagB = 0x00000010, static FlagC = 0x00000100 } )
This would not:
bitflags!( flags Flags: u32 { static FlagA = 0x00000001, static FlagB = 0x00000010, static FlagC = 0x00000100, } )