commit | e98d24d2b00fad60b43f06a2fa88bc191e71083d | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Apr 15 01:05:19 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri Apr 15 01:05:19 2022 +0000 |
tree | 6a5f14cb86a76dc538b346fa6295a8cf4cd6c3e5 | |
parent | 6446c0c0140749a24bde369f55ba8c5adb6622f7 [diff] | |
parent | 46421255c34fab1eb7b384216cadfb517df59d91 [diff] |
Snap for 8456972 from 46421255c34fab1eb7b384216cadfb517df59d91 to tm-release Change-Id: Ic983829f58d90da09e8a06004170c8f5c5595196
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.