pub trait RawReg: Copy + Default + From<bool> + BitOr<Output = Self> + BitAnd<Output = Self> + BitOrAssign + BitAndAssign + Not<Output = Self> + Shl<u8, Output = Self> {
    fn mask<const WI: u8>() -> Self;
    fn one() -> Self;
}
Expand description

Raw register type (u8, u16, u32, …)

Required Methods§

Mask for bits of width WI

Mask for bits of width 1

Implementations on Foreign Types§

Implementors§