[−][src]Trait phf_shared::PhfHash
A trait implemented by types which can be used in PHF data structures.
This differs from the standard library's Hash
trait in that PhfHash
's
results must be architecture independent so that hashes will be consistent
between the host and target when cross compiling.
Required methods
fn phf_hash<H: Hasher>(&self, state: &mut H)
Feeds the value into the state given, updating the hasher as necessary.
Provided methods
fn phf_hash_slice<H: Hasher>(data: &[Self], state: &mut H) where
Self: Sized,
Self: Sized,
Feeds a slice of this type into the state provided.
Implementations on Foreign Types
impl PhfHash for String
[src]
impl PhfHash for Vec<u8>
[src]
impl<'a> PhfHash for &'a str
[src]
impl<'a> PhfHash for &'a [u8]
[src]
impl PhfHash for str
[src]
impl PhfHash for [u8]
[src]
impl<S> PhfHash for UniCase<S> where
UniCase<S>: Hash,
[src]
UniCase<S>: Hash,