commit | dddb33cda4eb2e57aaa0cedcc5de7a7b4c449ac4 | [log] [tgz] |
---|---|---|
author | Justin DeMartino <jjdemartino@google.com> | Mon Sep 21 13:24:00 2020 -0700 |
committer | Justin DeMartino <jjdemartino@google.com> | Mon Sep 21 13:24:00 2020 -0700 |
tree | 0b77d4cc6e04e4ccbd5fcc0cde0db1ae85076861 | |
parent | 2595a04bcbf010993f55c0797bb9291b99560112 [diff] | |
parent | 642acd3f7fdcbbdc28bf6950e6832bdc2db652b1 [diff] |
Merge SP1A.200921.001 Change-Id: Ic8bd89420a4891181035dfff5dd900378a4ebde3
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.