commit | 3621b763d703c69aa1c02dff73c27d395f48f094 | [log] [tgz] |
---|---|---|
author | Joel Galenson <jgalenson@google.com> | Tue Aug 24 20:21:02 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Aug 24 20:21:02 2021 +0000 |
tree | c51602e3809e3a40f3f9a88f443017ac55bf49d1 | |
parent | 1fe839a03ee324d62be76db8ea8723b981ae56b3 [diff] | |
parent | 85e6d66ce8ad8e1613aaa50cd34d1cb960647af1 [diff] |
Update TEST_MAPPING am: ac26ddb180 am: 805dac9481 am: dfbfb563f4 am: f48bb2c838 am: 85e6d66ce8 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/1806077 Change-Id: Ia6013e89fb4e934dc663e37e6f7e553abcdca4a0
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.