commit | 7273ed1371e675a359ccbcdb2181f4818ef703e1 | [log] [tgz] |
---|---|---|
author | David Brazdil <[email protected]> | Mon Jan 23 13:19:04 2023 +0000 |
committer | David Brazdil <[email protected]> | Tue Jan 24 12:55:31 2023 +0000 |
tree | c566660ffe0e8ac61e547360c7ab1d26f43dee98 | |
parent | 8af55f8939b5a781bc57842646696b582dedfbb2 [diff] |
Update TEST_MAPPING Test: None Change-Id: Ie1ebc5301cbc3bafd8e985d048ab54d523c54c7e
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.