commit | 963f14aac410d881a9fbd202b0c8a6f2e29de9ed | [log] [tgz] |
---|---|---|
author | Scott Lobdell <slobdell@google.com> | Mon Nov 16 12:06:47 2020 -0800 |
committer | Scott Lobdell <slobdell@google.com> | Mon Nov 16 12:06:47 2020 -0800 |
tree | 455d14e5a76cce95d3b44a4381ea8a30225952fd | |
parent | 1b97576bef9ff8cc7486a5434dbb76cb35ec249a [diff] | |
parent | 4dd8a7552137038decdc593bb6950673ec9225b3 [diff] |
Merge SP1A.201116.001 Change-Id: If247072b4ab6a1eb29b8d1b884340cd3cf72d40d
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.