commit | 074a1b2411d4411a0d5d8129d741725fc9cc3929 | [log] [tgz] |
---|---|---|
author | Victor Hsieh <victorhsieh@google.com> | Tue May 11 12:36:09 2021 -0700 |
committer | Victor Hsieh <victorhsieh@google.com> | Thu May 13 11:29:19 2021 -0700 |
tree | 9dd219ea0595ea141ca04a576fdf2f7c2de70f50 | |
parent | 89e0a889bc9dc1c5eaeea2a87701ae4c14d3d83e [diff] |
Make available to com.android.compos apex Bug: 186126404 Test: m Change-Id: I3d73ba6e4d96eda8e4b9eb6806a946c0b275eae7
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.