Skip to main content

Implementation

Trait Implementation 

Source
pub trait Implementation {
    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".

Implementors§

Source§

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

Source§

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