commit | d120a0180e02b9f38d995dcfee88e8c6585490a6 | [log] [tgz] |
---|---|---|
author | Brian Orr <brianorr@google.com> | Mon May 10 11:39:47 2021 -0700 |
committer | Brian Orr <brianorr@google.com> | Mon May 10 11:39:47 2021 -0700 |
tree | 79f389b1c65ee3eae9d26f714053ca0f19be4752 | |
parent | 82d3a50dffa5eabae3bf0c5b49d5bb37abce39a1 [diff] | |
parent | 1ef890ed9e6f5fbdc51072dc58779580841beede [diff] |
Merge SP1A.210510.001 Change-Id: Ie31e7471a32ed3946705502a800ea64408a009fc
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.