mirror of
https://gitee.com/openharmony/third_party_rust_bitflags
synced 2024-11-23 07:10:11 +00:00
11 lines
128 B
Rust
11 lines
128 B
Rust
use bitflags::bitflags;
|
|
|
|
bitflags! {
|
|
#[repr(C)]
|
|
struct Flags: u32 {
|
|
const A = 0b00000001;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|