pub struct Hash128;Expand description
An implementation of std::hash::Hasher.
§Example
use std::hash::Hasher;
use std::io::Cursor;
use fasthash::{highway, FastHash};
assert_eq!(highway::Hash128::hash_with_seed("hello world", [1, 2, 3, 4]), 70726204502586093039340094508598794871);Trait Implementations§
Source§impl BuildHasher for Hash128
impl BuildHasher for Hash128
Auto Trait Implementations§
impl Freeze for Hash128
impl RefUnwindSafe for Hash128
impl Send for Hash128
impl Sync for Hash128
impl Unpin for Hash128
impl UnwindSafe for Hash128
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