fielder 0.1.0

Efficient and precise bitfields
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, Clone, Copy)]
pub struct Field<Bits> {
    pub name: &'static str,

    pub start_bit: Bits,
    pub end_bit: Bits,

    pub mask: Bits,
    pub value: Bits,
}