commit | a43fcd3d9ae105043b3f1d10769e400c56ea4ed2 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Mon May 09 06:00:05 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Mon May 09 06:00:05 2022 +0000 |
tree | 6a5f14cb86a76dc538b346fa6295a8cf4cd6c3e5 | |
parent | 407b0966c1001e9b057afa333e6104d2de5e20d8 [diff] | |
parent | 2b803731c01caa4523f7644fd106730556fd97db [diff] |
Snap for 8558685 from 2b803731c01caa4523f7644fd106730556fd97db to tm-frc-documentsui-release Change-Id: I943deb278b77fd285e0886352f2231eaf87bc0c0
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.