pub trait RegisterValue: Copy + Clone + BitAnd<Output = Self> + BitAndAssign + BitOr<Output = Self> + BitOrAssign + BitXor<Output = Self> + BitXorAssign + Not<Output = Self> + PartialEq + Eq + PartialOrd + Ord + From<u8> { }Expand description
A value that a register can store.
All registers are either u8 or u16.