commit | bad47995267ffb02c19b35a2a5d88aede5a8b8cf | [log] [tgz] |
---|---|---|
author | Xin Li <[email protected]> | Thu Aug 27 09:44:10 2020 -0700 |
committer | Xin Li <[email protected]> | Thu Aug 27 09:44:10 2020 -0700 |
tree | e160d0d375af275deb491ee145c855995596c0b5 | |
parent | 44365bad8831017177b66005465b521c37db3fa2 [diff] | |
parent | 046ea25792d0c9b1bf11682a27f4d13d72435cf0 [diff] |
Mark Android R (rvc-dev-plus-aosp-without-vendor@6692709) as merged Bug: 166295507 Merged-In: I72a48b539b851a297dae70f394b3236deac9b865 Change-Id: I75d3412a3df37dd90989bdde1411660673baa3d2
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.