pub type FnvBuildHasher = BuildHasherDefault<FnvHasher>;
Expand description
A builder for default FNV hashers.
Aliased Type§
pub struct FnvBuildHasher(/* private fields */);
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 0 bytes
Implementations
Source§impl<H> BuildHasherDefault<H>
impl<H> BuildHasherDefault<H>
1.85.0 (const: 1.85.0) · Sourcepub const fn new() -> BuildHasherDefault<H>
pub const fn new() -> BuildHasherDefault<H>
Creates a new BuildHasherDefault for Hasher H
.
Trait Implementations
1.7.0 · Source§impl<H> BuildHasher for BuildHasherDefault<H>
impl<H> BuildHasher for BuildHasherDefault<H>
1.7.0 · Source§impl<H> Clone for BuildHasherDefault<H>
impl<H> Clone for BuildHasherDefault<H>
Source§fn clone(&self) -> BuildHasherDefault<H>
fn clone(&self) -> BuildHasherDefault<H>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more1.9.0 · Source§impl<H> Debug for BuildHasherDefault<H>
impl<H> Debug for BuildHasherDefault<H>
1.7.0 · Source§impl<H> Default for BuildHasherDefault<H>
impl<H> Default for BuildHasherDefault<H>
Source§fn default() -> BuildHasherDefault<H>
fn default() -> BuildHasherDefault<H>
Returns the “default value” for a type. Read more
1.29.0 · Source§impl<H> PartialEq for BuildHasherDefault<H>
impl<H> PartialEq for BuildHasherDefault<H>
Source§fn eq(&self, _other: &BuildHasherDefault<H>) -> bool
fn eq(&self, _other: &BuildHasherDefault<H>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.