commit | 1426e5dee7633c55a620dff16c403bcb931f1256 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <[email protected]> | Sat May 15 03:05:50 2021 +0000 |
committer | android-build-team Robot <[email protected]> | Sat May 15 03:05:50 2021 +0000 |
tree | 79f389b1c65ee3eae9d26f714053ca0f19be4752 | |
parent | 4f56d4339ced5af524e564f7cc820bb4226a0701 [diff] | |
parent | 60c2c67aa4f90a6d24f8155b43d80bb79c484f21 [diff] |
Snap for 7362794 from 60c2c67aa4f90a6d24f8155b43d80bb79c484f21 to sc-v2-release Change-Id: Ieb95422864199c3ba438b8dc64f6ae0fc2b10bbf
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.