33 lines
1023 B
Markdown
33 lines
1023 B
Markdown
bitflags
|
|
========
|
|
|
|
[](https://github.com/bitflags/bitflags/actions)
|
|
[](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.3"
|
|
```
|
|
|
|
and this to your source code:
|
|
|
|
```rust
|
|
use bitflags::bitflags;
|
|
```
|
|
|
|
## Rust Version Support
|
|
|
|
The minimum supported Rust version is 1.46 due to use of associated constants and const functions.
|