Struct rustc_data_structures::sip128::SipHasher128
source · [−]#[repr(C)]pub struct SipHasher128 {
nbuf: usize,
buf: [MaybeUninit<u64>; 9],
state: State,
processed: usize,
}
Fields
nbuf: usize
buf: [MaybeUninit<u64>; 9]
state: State
processed: usize
Implementations
sourceimpl SipHasher128
impl SipHasher128
pub fn new_with_keys(key0: u64, key1: u64) -> SipHasher128
pub fn short_write<const LEN: usize>(&mut self, bytes: [u8; LEN])
unsafe fn short_write_process_buffer<const LEN: usize>(
&mut self,
bytes: [u8; LEN]
)
fn slice_write(&mut self, msg: &[u8])
unsafe fn slice_write_process_buffer(&mut self, msg: &[u8])
pub fn finish128(self) -> (u64, u64)
Trait Implementations
sourceimpl Clone for SipHasher128
impl Clone for SipHasher128
sourcefn clone(&self) -> SipHasher128
fn clone(&self) -> SipHasher128
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SipHasher128
impl Debug for SipHasher128
sourceimpl Hasher for SipHasher128
impl Hasher for SipHasher128
sourcefn write_usize(&mut self, i: usize)
fn write_usize(&mut self, i: usize)
Writes a single
usize
into this hasher.sourcefn write_isize(&mut self, i: isize)
fn write_isize(&mut self, i: isize)
Writes a single
isize
into this hasher.sourcefn write_str(&mut self, s: &str)
fn write_str(&mut self, s: &str)
🔬This is a nightly-only experimental API. (
hasher_prefixfree_extras
)Writes a single
str
into this hasher. Read more1.26.0 · sourcefn write_u128(&mut self, i: u128)
fn write_u128(&mut self, i: u128)
Writes a single
u128
into this hasher.1.26.0 · sourcefn write_i128(&mut self, i: i128)
fn write_i128(&mut self, i: i128)
Writes a single
i128
into this hasher.sourcefn write_length_prefix(&mut self, len: usize)
fn write_length_prefix(&mut self, len: usize)
🔬This is a nightly-only experimental API. (
hasher_prefixfree_extras
)Writes a length prefix into this hasher, as part of being prefix-free. Read more
Auto Trait Implementations
impl RefUnwindSafe for SipHasher128
impl Send for SipHasher128
impl Sync for SipHasher128
impl Unpin for SipHasher128
impl UnwindSafe for SipHasher128
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> Erased for T
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: 120 bytes