commit | 7d2531e2f90ff91a849a433416ccb3fce19d1bcb | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 01:09:41 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 01:09:41 2022 +0000 |
tree | 79f389b1c65ee3eae9d26f714053ca0f19be4752 | |
parent | de05122fa19635560828522475da62cb8a688ac4 [diff] | |
parent | 31dc0396bffc47d81e8ebbcdb37018f628715858 [diff] |
Snap for 8188146 from 31dc0396bffc47d81e8ebbcdb37018f628715858 to tm-frc-documentsui-release Change-Id: I6c313c1aa26cf71a0e3e233aed19569a4159df7e
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.