commit | ab78a99cedf25190abcc536c26f9cb2b7b234527 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Thu May 20 03:04:22 2021 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Thu May 20 03:04:22 2021 +0000 |
tree | 9dd219ea0595ea141ca04a576fdf2f7c2de70f50 | |
parent | dc2615898f826ca3dddf26bb7c11c98778e96e0a [diff] | |
parent | 008a065ab9751223753795e47a6dd1f9c9c45464 [diff] |
Snap for 7381307 from 008a065ab9751223753795e47a6dd1f9c9c45464 to tm-release Change-Id: I2e2303511fa9f722ffcfe61391611fdf24865f68
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.