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