pub trait Adler32Hash {
    // Required method
    fn hash(&self) -> u32;
}
Expand description

A Adler-32 hash-able type.

Required Methods§

source

fn hash(&self) -> u32

Feeds this value into Adler32.

Implementations on Foreign Types§

source§

impl<const SIZE: usize> Adler32Hash for [u8; SIZE]

source§

fn hash(&self) -> u32

source§

impl Adler32Hash for &str

source§

fn hash(&self) -> u32

source§

impl Adler32Hash for &[u8]

source§

fn hash(&self) -> u32

Implementors§