commit | 5f44c8c983e8aeede343082cc8f004002811059e | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Mon Aug 30 09:09:00 2021 -0700 |
committer | Joel Galenson <[email protected]> | Mon Aug 30 09:09:00 2021 -0700 |
tree | 351beacd9c57e161f19def79c4d7a9e93cfa2384 | |
parent | ac26ddb180a4394f046a5a051c4c371aff34c990 [diff] |
Update TEST_MAPPING Test: None Change-Id: Ia27ab2cc79fc237f9da8baaaf49d6308acbbb205
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.