commit | ac26ddb180a4394f046a5a051c4c371aff34c990 | [log] [tgz] |
---|---|---|
author | Joel Galenson <jgalenson@google.com> | Mon Aug 23 09:03:26 2021 -0700 |
committer | Joel Galenson <jgalenson@google.com> | Mon Aug 23 09:03:26 2021 -0700 |
tree | c51602e3809e3a40f3f9a88f443017ac55bf49d1 | |
parent | 1f028991cc9bd1845a03c28dca6fc7b7e4ea187f [diff] |
Update TEST_MAPPING Test: None Change-Id: I72597d6824ee653df6801ab89d8dfbf35f11189b
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.