commit | 8d156de3763da60ffb3b7d94cb37789d01f4cb3d | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 08:09:36 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 08:09:36 2022 +0000 |
tree | 79f389b1c65ee3eae9d26f714053ca0f19be4752 | |
parent | de05122fa19635560828522475da62cb8a688ac4 [diff] | |
parent | 31dc0396bffc47d81e8ebbcdb37018f628715858 [diff] |
Snap for 8189365 from 31dc0396bffc47d81e8ebbcdb37018f628715858 to tm-frc-os-statsd-release Change-Id: Ia1d1678767207cb634955576452b1faa2b8f9e6f
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.