Snap for 7362794 from 60c2c67aa4f90a6d24f8155b43d80bb79c484f21 to sc-v2-release Change-Id: Ieb95422864199c3ba438b8dc64f6ae0fc2b10bbf
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.