commit | f9f5e3e27ea00bc31d379b27b6f649d37c912c73 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Sat Jan 15 18:50:25 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Sat Jan 15 18:50:25 2022 +0000 |
tree | 8ff81e914e07610263b5dd03d297e04d977d6e86 | |
parent | d29d3ce40bdbcddd299389796601bb289f6583ca [diff] | |
parent | 9fa19f03587fdfdb45d78f6a82088dbe876d48b1 [diff] |
Snap for 8083664 from 9fa19f03587fdfdb45d78f6a82088dbe876d48b1 to t-keystone-qcom-release Change-Id: I71d713e5830a684e4aeb5cbadbbdf3e946422da9
A Rust macro to generate structures which behave like a set of bitflags
Add this to your Cargo.toml
:
[dependencies] bitflags = "1.3"
and this to your source code:
use bitflags::bitflags;
The minimum supported Rust version is 1.46 due to use of associated constants and const functions.