pub trait FletcherChecksum: Num + Unsigned + Default {
    type BlockType: Copy + Clone + Default + PartialEq + SimdElement + TryFrom<usize> + Unsigned + WrappingAdd + WrappingSub;
}
Expand description

Trait for the type representing a certain sized Fletcher checksum.

Required Associated Types

Implementations on Foreign Types

Implementors