| commit | 84bc4f762268c1021ec1e19ea20741d3b718dd87 | [log] [tgz] |
|---|---|---|
| author | android-build-team Robot <android-build-team-robot@google.com> | Sat Oct 10 01:09:00 2020 +0000 |
| committer | android-build-team Robot <android-build-team-robot@google.com> | Sat Oct 10 01:09:00 2020 +0000 |
| tree | 0b77d4cc6e04e4ccbd5fcc0cde0db1ae85076861 | |
| parent | 642acd3f7fdcbbdc28bf6950e6832bdc2db652b1 [diff] | |
| parent | c4afffba8a06e4921facafb823ce2695461e3047 [diff] |
Snap for 6896080 from c4afffba8a06e4921facafb823ce2695461e3047 to sc-release Change-Id: Ifc66f0a3ea93a6553f6af9d1baef70ad79875aca
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.