commit | 2f54651b17ede85892eeedec1f7ccc5cb9fb1224 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Wed Dec 16 02:08:03 2020 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Wed Dec 16 02:08:03 2020 +0000 |
tree | c1cbb4485741835a4d33e95fca3be84148610e07 | |
parent | 293c356e413973a13729e58a7ce5d6343baafed7 [diff] | |
parent | 02d9a9abf499c32652c6f44509184116c7ed63c2 [diff] |
Snap for 7035473 from 02d9a9abf499c32652c6f44509184116c7ed63c2 to sc-release Change-Id: I9e6064017eb631ce250da407acd4ac0b1dc1745f
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.