commit | 1f8c62f230c3127f431f8f19361389adeec47ff2 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Wed Jun 15 21:43:28 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Wed Jun 15 21:43:28 2022 +0000 |
tree | 79f389b1c65ee3eae9d26f714053ca0f19be4752 | |
parent | f7d3f8bcb402c8b6f8fc0dddcf6cc473af7dd24c [diff] | |
parent | 31dc0396bffc47d81e8ebbcdb37018f628715858 [diff] |
Snap for 8730993 from 31dc0396bffc47d81e8ebbcdb37018f628715858 to mainline-tzdata3-release Change-Id: I3efc00b8b4648722b238ff8ead45fc5a94cb8d31
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.