pub trait BloomHashIndex {
    // Required method
    fn hash_at_index(&self, hash_index: u64) -> u64;
}
Expand description

Generate a stable hash of self for each hash_index Best effort can be made for uniqueness of each hash.

Required Methods§

source

fn hash_at_index(&self, hash_index: u64) -> u64

Implementors§

source§

impl<T: AsRef<[u8]>> BloomHashIndex for T