We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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, } )