mirror of
https://github.com/openharmony/third_party_rust_bitflags.git
synced 2026-07-20 23:46:15 -04:00
0735d74d62
Signed-off-by: ljy9810 <longjianyin@h-partners.com>
10 lines
127 B
Rust
10 lines
127 B
Rust
use bitflags::bitflags;
|
|
|
|
bitflags! {
|
|
pub struct Flags1: u32 {
|
|
pub const FLAG_A = 0b00000001;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|