Go to file
openharmony_ci 74522d2cb0
!2 Add OAT.xml and README.OpenSource
Merge pull request !2 from fangting/master
2023-04-14 08:10:29 +00:00
.github/workflows Move test_suite to tests 2021-07-19 19:43:25 +02:00
src prepare for 1.3.2 release 2021-08-16 14:12:11 +10:00
tests more work on compile tests 2021-08-16 14:00:53 +10:00
.gitignore commit stderr for compilefail tests 2021-08-05 11:06:04 +10:00
bors.toml Remove remaining mentions of Travis CI 2021-05-09 18:12:50 +03:00
BUILD.gn Add GN Build Files and Custom Modifications 2023-04-12 17:25:47 +08:00
Cargo.toml prepare for 1.3.2 release 2021-08-16 14:12:11 +10:00
CHANGELOG.md prepare for 1.3.2 release 2021-08-16 14:12:11 +10:00
CODE_OF_CONDUCT.md add code of conduct (#160) 2018-05-31 15:09:56 +05:30
LICENSE-APACHE Initial commit 2015-01-15 00:32:45 -08:00
LICENSE-MIT Initial commit 2015-01-15 00:32:45 -08:00
README.md prepare for 1.3.0 release 2021-08-05 11:28:42 +10:00
README.OpenSource Add OAT.xml and README.OpenSource 2023-04-14 14:14:39 +08:00

bitflags

Rust Join the chat at https://gitter.im/bitflags/Lobby Latest version Documentation License

A Rust macro to generate structures which behave like a set of bitflags

Usage

Add this to your Cargo.toml:

[dependencies]
bitflags = "1.3"

and this to your source code:

use bitflags::bitflags;

Rust Version Support

The minimum supported Rust version is 1.46 due to use of associated constants and const functions.