blob: df12934c3e28aedc43c077643ec872d3bed3c214 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
bitflags
========
[](https://travis-ci.com/bitflags/bitflags)
[](https://gitter.im/bitflags/Lobby?utm_source=badge&utm_medium=badge&utm_content=badge)
[](https://crates.io/crates/bitflags)
[](https://docs.rs/bitflags)


A Rust macro to generate structures which behave like a set of bitflags
- [Documentation](https://docs.rs/bitflags)
- [Release notes](https://github.com/bitflags/bitflags/releases)
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
bitflags = "1.0"
```
and this to your crate root:
```rust
#[macro_use]
extern crate bitflags;
```
## Rust Version Support
The minimum supported Rust version is 1.20 due to use of associated constants.
|