Trait kernel::common::regs::IntLike [] [src]

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

Required Methods

Implementors