[][src]Trait tock_registers::registers::IntLike

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.

Required methods

fn zero() -> Self

Loading content...

Implementors

impl IntLike for u8[src]

impl IntLike for u16[src]

impl IntLike for u32[src]

impl IntLike for u64[src]

Loading content...