[automerger skipped] Mark ab/7061308 as merged in stage. am: b6847a666f -s ours am: 2a35208d05 -s ours am: 22ef9633be -s ours am skip reason: Change-Id Id49bd915bf088e2eaa1dc889800615fa3722026b with SHA-1 6d95c14fc5 is in history Original change: undetermined MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ie047c36f5b704e77b3ad0891d9b5b55dd197cadd
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.