[automerger skipped] Mark Android R (rvc-dev-plus-aosp-without-vendor@6692709) as merged am: bad4799526 -s ours am: 3f1b78c088 -s ours am: 84ca1da580 -s ours am: 16b5776e62 -s ours

am skip reason: Change-Id I72a48b539b851a297dae70f394b3236deac9b865 with SHA-1 046ea25792 is in history

Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/12469818

Change-Id: Ib14def4519ab2e44faeaafa4dece46eadea22fa8
tree: e160d0d375af275deb491ee145c855995596c0b5
  1. src/
  2. .cargo_vcs_info.json
  3. .gitignore
  4. Android.bp
  5. build.rs
  6. Cargo.toml
  7. Cargo.toml.orig
  8. CHANGELOG.md
  9. CODE_OF_CONDUCT.md
  10. LICENSE-APACHE
  11. LICENSE-MIT
  12. METADATA
  13. MODULE_LICENSE_APACHE2
  14. OWNERS
  15. README.md
  16. TEST_MAPPING
README.md

bitflags

Build Status Join the chat at https://gitter.im/bitflags/Lobby Latest version Documentation Minimum rustc version License

A Rust macro to generate structures which behave like a set of bitflags

Usage

Add this to your Cargo.toml:

[dependencies]
bitflags = "1.0"

and this to your crate root:

#[macro_use]
extern crate bitflags;

Rust Version Support

The minimum supported Rust version is 1.20 due to use of associated constants.