pub struct FnvBuilder { /* private fields */ }
Expand description
A builder for the FNV hash, letting you configure the variant (Fnv1 or Fnv1a) and bit size (32, 64).
Implementations§
Source§impl FnvBuilder
impl FnvBuilder
Sourcepub fn variant(self, variant: FnvVariant) -> Self
pub fn variant(self, variant: FnvVariant) -> Self
Sets the variant: FNV-1 or FNV-1a.
Sourcepub fn build(self) -> FnvBuildHasher
pub fn build(self) -> FnvBuildHasher
Builds a FnvBuildHasher
that can produce FnvHasher
objects implementing std::hash::Hasher
.
Trait Implementations§
Source§impl Clone for FnvBuilder
impl Clone for FnvBuilder
Source§fn clone(&self) -> FnvBuilder
fn clone(&self) -> FnvBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FnvBuilder
impl Debug for FnvBuilder
Auto Trait Implementations§
impl Freeze for FnvBuilder
impl RefUnwindSafe for FnvBuilder
impl Send for FnvBuilder
impl Sync for FnvBuilder
impl Unpin for FnvBuilder
impl UnwindSafe for FnvBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more