commit | 26463e0500b5043976d4ed1b94bed551b234ed44 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <jeffv@google.com> | Thu Nov 05 15:23:36 2020 +0100 |
committer | Jeff Vander Stoep <jeffv@google.com> | Thu Nov 05 15:23:36 2020 +0100 |
tree | 455d14e5a76cce95d3b44a4381ea8a30225952fd | |
parent | 2dd58bbeacd6245ae36e661256e60dd54d1e9c13 [diff] |
TEST_MAPPING: test dependers of this crate Bug: 168167373 Test: TH Change-Id: I7dba7f7102788a2db50719407b1d8e5e53265169
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.