[][src]Trait register::IntLike

pub trait IntLike: Clone + Eq + Copy + Not<Output = Self> + BitAnd<Self, Output = Self> + BitOr<Self, Output = Self> + Shl<usize, Output = Self> + Shr<usize, Output = Self> + BitOrAssign<Self> {
    pub fn zero() -> Self;
}

IntLike properties needed to read/write/modify a register.

Required methods

pub fn zero() -> Self[src]

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...