superbitty 0.3.2

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

bitfields! {
    struct NegativeBaseTy : isize {}
}

bitfields! {
    struct OtherBaseTy : Option<String> {}
}

fn main() {}