commit | ba37fec9ef7a519afc2e5715b9d9045390499c7f | [log] [tgz] |
---|---|---|
author | android-build-prod (mdb) <[email protected]> | Mon Oct 26 18:18:07 2020 +0000 |
committer | android-build-prod (mdb) <[email protected]> | Mon Oct 26 18:18:07 2020 +0000 |
tree | 16e8ff657bf8c34859848a69906d50a3a0de95be | |
parent | b24d8fbc6e9b88fe74367c4b1cd611b3817d10b4 [diff] | |
parent | 04265b7097189eabda48f8dc480f5b20b34231c4 [diff] |
Snap for 6912731 from 04265b7097189eabda48f8dc480f5b20b34231c4 to emu-30-release Change-Id: Id8674e6df68dee0a596c12934b155d89647504ab
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.