A bitmask generator for enum scoped bit flags
Add bitmask
as a dependency in your Cargo.toml
:
toml
[dependency]
bitmask = "^0.3.0"
Then add this snippet to your crate's root:
```rust
extern crate bitmask; ```
Run a specific example with cargo run --example <name>
.