mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-10 23:35:06 +02:00
13 lines
210 B
Rust
13 lines
210 B
Rust
mod example {
|
|
use bitflags::bitflags;
|
|
|
|
bitflags! {
|
|
pub struct Flags1: u32 {
|
|
const FLAG_A = 0b00000001;
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let flag1 = example::Flags1::FLAG_A.bits;
|
|
}
|