commit | 246c7d64a30e8ccba598c7aeb744e91b21abdcc5 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <[email protected]> | Sun Feb 21 00:05:18 2021 +0000 |
committer | android-build-team Robot <[email protected]> | Sun Feb 21 00:05:18 2021 +0000 |
tree | b8100f2cefdf43e4d3f8650d7325c1ca8e956c01 | |
parent | c94ee1312712c7bc6ada0982ff17ded3c877a0f3 [diff] | |
parent | 22ef9633be95ccf55361f0aa37b103b62b2687e2 [diff] |
Snap for 7160059 from 22ef9633be95ccf55361f0aa37b103b62b2687e2 to sc-v2-release Change-Id: I30644048dd400c695172ec5d6b4fe9772a02b9a1
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.