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>
15 lines
178 B
Rust
15 lines
178 B
Rust
#[macro_use]
|
|
extern crate bitflags;
|
|
|
|
bitflags! {
|
|
pub struct Flags1: u32 {
|
|
const A = 1;
|
|
}
|
|
}
|
|
|
|
bitflags! {
|
|
pub struct Flags1: u32 {
|
|
const A = 1;
|
|
}
|
|
}
|