A Rust macro to generate structures which behave like a set of bitflags
Documentation
Add this to your Cargo.toml:
Cargo.toml
toml [dependencies] bitflags = "0.6"
and this to your crate root:
```rust
extern crate bitflags; ```