commit | 7cdfc32a6caa5373c5c47bc0f0b33f8c70821d30 | [log] [tgz] |
---|---|---|
author | Xin Li <[email protected]> | Thu Apr 09 17:50:55 2020 -0700 |
committer | Xin Li <[email protected]> | Thu Apr 09 17:50:55 2020 -0700 |
tree | e2194b72b4c4ba45cd8b417b476d3065d80ea9f9 | |
parent | dc003d36bfde662ba482eeaa77f62ffc7a62c7c9 [diff] | |
parent | d222232a3677ddc88887736971185773813f3ccd [diff] |
DO NOT MERGE - Empty merge qt-qpr1-dev-plus-aosp into stag-aosp-master Bug: 151763422 Change-Id: If348c428da19e65f806ac1b4d04071bb0d345fe7
A Rust macro to generate structures which behave like a set of bitflags
Add this to your Cargo.toml
:
[dependencies] bitflags = "1.0"
and this to your crate root:
#[macro_use] extern crate bitflags;
The minimum supported Rust version is 1.20 due to use of associated constants.