commit | dc2615898f826ca3dddf26bb7c11c98778e96e0a | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Sun May 16 01:05:09 2021 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Sun May 16 01:05:09 2021 +0000 |
tree | 79f389b1c65ee3eae9d26f714053ca0f19be4752 | |
parent | 71cf014aca223f21b43d2cf1e9d03135e3182ed2 [diff] | |
parent | e04c4f0a7c0cad8c89bdafa41286bea6bb816d9b [diff] |
Snap for 7366010 from e04c4f0a7c0cad8c89bdafa41286bea6bb816d9b to tm-release Change-Id: Ib95b0c31126bc8d31d74dfef9bf5fe55a23a482d
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.