pub struct FnvHasher(/* private fields */);Expand description
Original FNV Rust implementation taken from fnv crate on crates.io by Alex Crichton alex@alexcrichton.com under Apache-2.0 / MIT license Copyright 2018.
An implementation of the Fowler–Noll–Vo hash function.
See the crate documentation for more details.
Implementations§
Trait Implementations§
impl Copy for FnvHasher
Auto Trait Implementations§
impl Freeze for FnvHasher
impl RefUnwindSafe for FnvHasher
impl Send for FnvHasher
impl Sync for FnvHasher
impl Unpin for FnvHasher
impl UnwindSafe for FnvHasher
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