commit | dc1c78d5a0b4d94ed14f02489b11cee72c8c8ba7 | [log] [tgz] |
---|---|---|
author | Joel Galenson <jgalenson@google.com> | Mon Aug 30 22:09:29 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Aug 30 22:09:29 2021 +0000 |
tree | 351beacd9c57e161f19def79c4d7a9e93cfa2384 | |
parent | 3621b763d703c69aa1c02dff73c27d395f48f094 [diff] | |
parent | 58d3c9a3b4d29415d3f1513b2a15934664f98cec [diff] |
Update TEST_MAPPING am: 5f44c8c983 am: 78a7961e8a am: 7439f7e84a am: 73b00f55bc am: 58d3c9a3b4 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/1813697 Change-Id: Iac6089ab231c154f322b28b25a9448993e0ba6b6
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.