commit | 4dd8a7552137038decdc593bb6950673ec9225b3 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Fri Nov 06 02:04:59 2020 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Fri Nov 06 02:04:59 2020 +0000 |
tree | 455d14e5a76cce95d3b44a4381ea8a30225952fd | |
parent | 5c89c637cd7f898aade4d2b6a85e76117ba945a9 [diff] | |
parent | 55ed5376fe860f922820d0cbb1df661c4ff00faf [diff] |
Snap for 6955520 from 55ed5376fe860f922820d0cbb1df661c4ff00faf to sc-release Change-Id: I120a47f3f5172edcfe9a18a6b6ce76f8cbb4e657
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.