superbitty 0.3.2

A bitfields crate.
Documentation
1
2
3
4
5
6
7
8
9
10
use superbitty::bitfields;

#[allow(non_camel_case_types)]
struct u32;

bitfields! {
    struct Foo : u32 {}
}

fn main() {}