commit | 0ca248992512046f1d90e50b30cdf3870fc83888 | [log] [tgz] |
---|---|---|
author | Matthew Maurer <mmaurer@google.com> | Thu May 26 10:32:30 2022 -0700 |
committer | Matthew Maurer <mmaurer@google.com> | Fri May 27 15:13:26 2022 -0700 |
tree | d6793ca39a10247aa5e51b97dcb146a57c1046d3 | |
parent | 603997526e625fcde6764452bb866662435ca1e1 [diff] |
Update TEST_MAPPING Test: None Bug: 233924440 Change-Id: Iaea263faea6b88421f50c2c8f63bab876e2abf55
A Rust macro to generate structures which behave like a set of bitflags
Add this to your Cargo.toml
:
[dependencies] bitflags = "1.3"
and this to your source code:
use bitflags::bitflags;
The minimum supported Rust version is 1.46 due to use of associated constants and const functions.