commit | 8af55f8939b5a781bc57842646696b582dedfbb2 | [log] [tgz] |
---|---|---|
author | William Escande <[email protected]> | Wed Aug 24 09:08:40 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Aug 24 09:08:40 2022 +0000 |
tree | eb4e3cae81a9d4880a9a69333d51b7c21236fe32 | |
parent | 3f3adfd08259c8292f4b81945861568535da4cd0 [diff] | |
parent | 309afc6d0e420e4c55599a95d131c54511a3d8f4 [diff] |
[Bluetooth apex] Use new apex name am: ef554fa633 am: ca38871f6d am: 7b3c1300ff am: 309afc6d0e Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bitflags/+/2192091 Change-Id: I3ec752a310f065d2d1662fbae66141e0f9afe796 Signed-off-by: Automerger Merge Worker <[email protected]>
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.