Trait IntLike
tock_registers::registers
pub trait IntLike: BitAnd<Output = Self> + BitOr<Output = Self> + Not<Output = Self> + Eq + Shr<usize, Output = Self> + Shl<usize, Output = Self> + Copy + Clone { fn zero() -> Self; }
IntLike properties needed to read/write/modify a register.
fn zero() -> Self
impl IntLike for u8
impl IntLike for u16
impl IntLike for u32
impl IntLike for u64