commit | 805dac94812a391a62f527616abcc2d38619b79c | [log] [tgz] |
---|---|---|
author | Joel Galenson <jgalenson@google.com> | Tue Aug 24 18:23:57 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Aug 24 18:23:57 2021 +0000 |
tree | c51602e3809e3a40f3f9a88f443017ac55bf49d1 | |
parent | ef476242d2b195cfa903b026f2e8150950a42a57 [diff] | |
parent | ac26ddb180a4394f046a5a051c4c371aff34c990 [diff] |
Update TEST_MAPPING am: ac26ddb180 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/1806077 Change-Id: I316f8e5ccb404d65c01aa17539dff26953440f3d
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.