commit | 3be99c1ed0cc14067a2c2badd1ae931e46b49693 | [log] [tgz] |
---|---|---|
author | Roopa Sattiraju <[email protected]> | Tue Dec 21 15:58:41 2021 -0800 |
committer | Roopa Sattiraju <[email protected]> | Tue Dec 21 16:13:42 2021 -0800 |
tree | e46cd99d3adb97fd9c4fdf65e73555b13b5f456b | |
parent | 65aaaa7452b6a7b7b268348c9f74fff0a8b7a9d6 [diff] |
Adding bluetooth apex Bug: 206121418 Test: Compile Change-Id: Ied2eb30df1c0a765fe2b9d6d9fd884971b6b602d
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.