Merge "Update TEST_MAPPING" am: 603997526e am: 91ed01964f am: 8ec47c29e4 am: 46421255c3 am: 67e0676853 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/2004805 Change-Id: I5fee56c8e705e7f1596acd7c0adf5f8af1ac9bdb 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.