Trait phf::PhfHash [] [src]

pub trait PhfHash {
    fn phf_hash(&self, seed: u64) -> (u32, u32, u32);
}

A trait implemented by types which can be used in PHF data structures

Required Methods

fn phf_hash(&self, seed: u64) -> (u32, u32, u32)

Hashes the value of self, factoring in a seed

Implementors