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.

Implementations on Foreign Types§

source§

impl RegisterValue for u8

source§

impl RegisterValue for u16

Implementors§