1 use bitflags::bitflags; 2 3 bitflags! { 4 pub struct Flags1: u32 { 5 pub const FLAG_A = 0b00000001; 6 } 7 } 8 main()9 fn main() {} 10