commit | 55c82dbcb6cec25570a47c70f01c400df4a8858a | [log] [tgz] |
---|---|---|
author | Xin Li <delphij@google.com> | Thu Oct 08 17:21:27 2020 -0700 |
committer | Xin Li <delphij@google.com> | Thu Oct 08 17:21:27 2020 -0700 |
tree | 0b77d4cc6e04e4ccbd5fcc0cde0db1ae85076861 | |
parent | 506efc2ebd93eb89c3fcf36b3b29463bdd52b58c [diff] | |
parent | 7780ece6dfa3f6d951fc54913deefe008566651e [diff] |
Skip ab/6749736 in stage. Merged-In: Ic11a2321ae4bfc6f9e943fae8a820375181987b7 Change-Id: I7608a79f807038b185c047c0a17b129fca14f4c5
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.