crc

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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

Source§

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