commit | c94ee1312712c7bc6ada0982ff17ded3c877a0f3 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <[email protected]> | Wed Feb 17 03:16:26 2021 +0000 |
committer | android-build-team Robot <[email protected]> | Wed Feb 17 03:16:26 2021 +0000 |
tree | b8100f2cefdf43e4d3f8650d7325c1ca8e956c01 | |
parent | d666543f611ea633d29c7ceedce974af86da1788 [diff] | |
parent | 4d395886b5f0fc7abfeaa65a79b62c3da98fbe34 [diff] |
Snap for 7149879 from 4d395886b5f0fc7abfeaa65a79b62c3da98fbe34 to sc-v2-release Change-Id: I264ce6a09b0814f3a295ef2d792ccf84c8d63576
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.