tag | 7f459a8f69f2dfb1b86a4d57e3e8c7b1baa8e8e3 | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Mon Mar 13 17:33:30 2023 -0700 |
object | 1426e5dee7633c55a620dff16c403bcb931f1256 |
Android platform 12.1.0 release 13
commit | 1426e5dee7633c55a620dff16c403bcb931f1256 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Sat May 15 03:05:50 2021 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | 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.