crc

Type Alias NoTable

source
pub type NoTable = Table<0>;
Expand description

An implementation of the CRC algorithm with no lookup table.

Aliased Type§

struct NoTable {}

Trait Implementations

source§

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

source§

fn clone(&self) -> Table<L>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

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

source§

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

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

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