third_party_rust_bitflags/README.md

33 lines
1023 B
Markdown
Raw Permalink Normal View History

2015-01-15 08:31:55 +00:00
bitflags
========
2020-11-06 23:28:17 +00:00
[![Rust](https://github.com/bitflags/bitflags/workflows/Rust/badge.svg)](https://github.com/bitflags/bitflags/actions)
2018-05-31 09:47:09 +00:00
[![Join the chat at https://gitter.im/bitflags/Lobby](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/bitflags/Lobby?utm_source=badge&utm_medium=badge&utm_content=badge)
[![Latest version](https://img.shields.io/crates/v/bitflags.svg)](https://crates.io/crates/bitflags)
[![Documentation](https://docs.rs/bitflags/badge.svg)](https://docs.rs/bitflags)
![License](https://img.shields.io/crates/l/bitflags.svg)
2018-05-31 09:47:09 +00:00
A Rust macro to generate structures which behave like a set of bitflags
2015-01-15 08:31:55 +00:00
- [Documentation](https://docs.rs/bitflags)
- [Release notes](https://github.com/bitflags/bitflags/releases)
2015-01-15 08:31:55 +00:00
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
2021-08-05 01:28:42 +00:00
bitflags = "1.3"
2015-01-15 08:31:55 +00:00
```
2021-06-27 18:00:43 +00:00
and this to your source code:
2015-01-15 08:31:55 +00:00
```rust
2021-06-27 18:00:43 +00:00
use bitflags::bitflags;
2015-01-15 08:31:55 +00:00
```
## Rust Version Support
2021-05-16 06:05:05 +00:00
The minimum supported Rust version is 1.46 due to use of associated constants and const functions.