pub struct Xxh3_64 { /* private fields */ }Expand description
XXH3 64-bit hash.
A fast non-cryptographic hash using the XXH3 algorithm. Supports an
optional u64 seed and an optional custom 192-byte secret.
§Example
use xxhash::{Xxh3_64, Checksum};
let hash = Xxh3_64::checksum(b"hello world");Implementations§
Trait Implementations§
Source§impl Checksum for Xxh3_64
impl Checksum for Xxh3_64
Auto Trait Implementations§
impl Freeze for Xxh3_64
impl RefUnwindSafe for Xxh3_64
impl Send for Xxh3_64
impl Sync for Xxh3_64
impl Unpin for Xxh3_64
impl UnsafeUnpin for Xxh3_64
impl UnwindSafe for Xxh3_64
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