commit | 858c8dc6af1db64bd0e636771f18c611920f74bb | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Sat May 29 05:05:22 2021 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Sat May 29 05:05:22 2021 +0000 |
tree | 9dd219ea0595ea141ca04a576fdf2f7c2de70f50 | |
parent | ab78a99cedf25190abcc536c26f9cb2b7b234527 [diff] | |
parent | 1fe839a03ee324d62be76db8ea8723b981ae56b3 [diff] |
Snap for 7408822 from 1fe839a03ee324d62be76db8ea8723b981ae56b3 to tm-release Change-Id: I83c8364e086fe3262a52a24f0180627a49d6c1a5
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.