pub unsafe trait CRC32<const P: u32>: InstructionSet {
    fn crc32_u8(self, crc: u32, value: u8) -> u32;
    fn crc32_u16(self, crc: u32, value: u16) -> u32;
    fn crc32_u32(self, crc: u32, value: u32) -> u32;
    fn crc32_u64(self, crc: u32, value: u64) -> u32;
}

Required Methods

Implementors