commit | 5c89c637cd7f898aade4d2b6a85e76117ba945a9 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Tue Oct 13 01:05:02 2020 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Tue Oct 13 01:05:02 2020 +0000 |
tree | 16e8ff657bf8c34859848a69906d50a3a0de95be | |
parent | 84bc4f762268c1021ec1e19ea20741d3b718dd87 [diff] | |
parent | a087b39d427d73a11390405c69c3877ce3a1a52e [diff] |
Snap for 6900699 from a087b39d427d73a11390405c69c3877ce3a1a52e to sc-release Change-Id: I99a17bfa77f7dc1d5cf4673c9f6beee164b062fe
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.