commit | 45865447f06c215248cea20fbdac9688fda70cf4 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 08:19:47 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 08:19:47 2022 +0000 |
tree | 79f389b1c65ee3eae9d26f714053ca0f19be4752 | |
parent | de05122fa19635560828522475da62cb8a688ac4 [diff] | |
parent | 31dc0396bffc47d81e8ebbcdb37018f628715858 [diff] |
Snap for 8189365 from 31dc0396bffc47d81e8ebbcdb37018f628715858 to tm-frc-resolv-release Change-Id: I0af38e6a13fe9c2f4ed1475b7973334e5d869051
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.