| commit | 642acd3f7fdcbbdc28bf6950e6832bdc2db652b1 | [log] [tgz] |
|---|---|---|
| author | android-build-team Robot <android-build-team-robot@google.com> | Sat Aug 29 01:00:40 2020 +0000 |
| committer | android-build-team Robot <android-build-team-robot@google.com> | Sat Aug 29 01:00:40 2020 +0000 |
| tree | 0b77d4cc6e04e4ccbd5fcc0cde0db1ae85076861 | |
| parent | 3e41ff7f6bacbc440cc9430840256fb45c1d23ed [diff] | |
| parent | a7d0ceed4b460d8d8b368ae79143833e54f67beb [diff] |
Snap for 6799253 from a7d0ceed4b460d8d8b368ae79143833e54f67beb to sc-release Change-Id: Ifc5a9b5ed39410e936d1eff17be372047b5f2d78
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.