Go to file
Chris Morgan 3ff9abcca7 Implement FromIterator on the flags struct.
I corrected some outdated information about the derived trait
implementations while I was at it.
2015-06-25 12:11:44 +10:00
src Implement FromIterator on the flags struct. 2015-06-25 12:11:44 +10:00
.gitignore Initial commit 2015-01-15 00:32:45 -08:00
.travis.yml Test on rust 1.0.0, nightly, and beta 2015-05-16 21:32:40 -07:00
Cargo.toml Bump to 0.2.1 2015-06-01 13:35:59 -07:00
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 close #11, updated readme 2015-06-23 14:43:14 +08:00

bitflags

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

Build Status

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]

bitflags = "0.2"

and this to your crate root:

#[macro_use]
extern crate bitflags;