commit | cf817a826c2c3ea9b4351d7ee61255cb19b29118 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Tue Jan 31 22:39:34 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jan 31 22:39:34 2023 +0000 |
tree | 95c86520ab31281facd811b1e84f22659ca6339c | |
parent | 617da5478942ce354b318614d01b82ef82c2414e [diff] | |
parent | 63b70b353019ab3a93761f7db406e30e9f40ea27 [diff] |
Update TEST_MAPPING am: 2ce77041a3 am: 878699e848 am: 63b70b3530 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/2411776 Change-Id: I81d4277021378fb9884374f17ac303469faffaed Signed-off-by: Automerger Merge Worker <[email protected]>
A Rust macro to generate structures which behave like a set of bitflags
Add this to your Cargo.toml
:
[dependencies] bitflags = "1.3"
and this to your source code:
use bitflags::bitflags;
The minimum supported Rust version is 1.46 due to use of associated constants and const functions.