Trait crc::Implementation

source ·
pub trait Implementation: Sealed {
    type Data<W>;
}
Expand description

A trait for CRC implementations.

Required Associated Types§

source

type Data<W>

Associated data necessary for the implementation (e.g. lookup tables).

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<const L: usize> Implementation for Table<L>

§

type Data<W> = [[W; 256]; L]