Trait BuildHasher
pub trait BuildHasher {
type H: Hasher;
// Required methods
pub fn build_hasher(self) -> H;
}
Required methods
pub fn build_hasher(self) -> H
pub trait BuildHasher {
type H: Hasher;
// Required methods
pub fn build_hasher(self) -> H;
}
pub fn build_hasher(self) -> H
impl<H> BuildHasher for BuildHasherDefault<H>