Trait crc16::CrcType [] [src]

pub trait CrcType {
    fn init() -> u16;
fn update(crc: u16, msg: &[u8]) -> u16;
fn get(crc: u16) -> u16; }

Required Methods

Implementors