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>