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