pub trait BloomHasher {
    fn hash(&self, seed: u32, bytes: &[u8]) -> u32;
}
Expand description

A trait for hashing an arbitrary stream of bytes into a bloom filter.

Required Methods§

Returns the hashed value of the bytes given some seed.

Implementors§