Type Alias FnvBuildHasher

Source
pub type FnvBuildHasher = BuildHasherDefault<FnvHasher>;
Expand description

A builder for default FNV hashers.

Aliased Type§

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>

1.85.0 (const: 1.85.0) · Source

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>
where H: Default + Hasher,

Source§

type Hasher = H

Type of the hasher that will be created.
Source§

fn build_hasher(&self) -> H

Creates a new hasher. Read more
1.71.0 · Source§

fn hash_one<T>(&self, x: T) -> u64
where T: Hash, Self: Sized, Self::Hasher: Hasher,

Calculates the hash of a single value. Read more
1.7.0 · Source§

impl<H> Clone for BuildHasherDefault<H>

Source§

fn clone(&self) -> BuildHasherDefault<H>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
1.9.0 · Source§

impl<H> Debug for BuildHasherDefault<H>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
1.7.0 · Source§

impl<H> Default for BuildHasherDefault<H>

Source§

fn default() -> BuildHasherDefault<H>

Returns the “default value” for a type. Read more
1.29.0 · Source§

impl<H> PartialEq for BuildHasherDefault<H>

Source§

fn eq(&self, _other: &BuildHasherDefault<H>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
1.29.0 · Source§

impl<H> Eq for BuildHasherDefault<H>