commit | 97a9372d66dbaa5e2813a8bfb7c576d0debad537 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 01:12:15 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 01:12:15 2022 +0000 |
tree | 79f389b1c65ee3eae9d26f714053ca0f19be4752 | |
parent | de05122fa19635560828522475da62cb8a688ac4 [diff] | |
parent | 31dc0396bffc47d81e8ebbcdb37018f628715858 [diff] |
Snap for 8188146 from 31dc0396bffc47d81e8ebbcdb37018f628715858 to tm-frc-ipsec-release Change-Id: I307db7f39dc6ae9d05a4beb0f077bea1a7f5be23
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.