pub trait NoiseHasher: Send + Sync {
    // Required method
    fn hash(&self, to_hash: &[isize]) -> usize;
}

Required Methods§

source

fn hash(&self, to_hash: &[isize]) -> usize

Implementors§