commit | 99d3212852b35f9ad0904f0583c7d1078743e988 | [log] [tgz] |
---|---|---|
author | Bob Badour <bbadour@google.com> | Fri Apr 24 18:39:27 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Apr 24 18:39:27 2020 +0000 |
tree | 5d3077baca3f524419d19f2fd5153c1babebe131 | |
parent | cdb75613aed745bf4efc2ffa40dd400b442e04f7 [diff] | |
parent | 7e1884d2194b47ec144c7eafa6e4c02efb09330c [diff] |
Add license type: Apache2+MIT are NOTICE licenses am: 7255afafd6 am: 7e1884d219 Change-Id: I4c2a826b14bce006f3a1ca2e6f95098cb66755ff
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.