commit | 13485d1aca349624f09db7b028ba140956e69f2f | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Sun Feb 21 02:44:12 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Sun Feb 21 02:44:12 2021 +0000 |
tree | b8100f2cefdf43e4d3f8650d7325c1ca8e956c01 | |
parent | f17bc30a26f720515731fa53668f9138224f0c76 [diff] | |
parent | 117d64c707d849c58311d11915d75092cb764b40 [diff] |
Snap for 7160059 from 22ef9633be95ccf55361f0aa37b103b62b2687e2 to sc-release am: 117d64c707 Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/13646097 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I2153b1cc1e58ba9d8f1d8178888df8d0dc3e8592
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.