Type Alias twox_hash::XxHash

source ·
pub type XxHash = XxHash64;
Expand description

A backwards compatibility type alias. Consider directly using XxHash64 instead.

Aliased Type§

struct XxHash { /* private fields */ }

Implementations

source§

impl XxHash64

source

pub fn with_seed(seed: u64) -> XxHash64

Constructs the hash with an initial seed

source

pub fn seed(&self) -> u64

source

pub fn total_len(&self) -> u64

Trait Implementations

source§

impl Clone for XxHash64

source§

fn clone(&self) -> XxHash64

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for XxHash64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for XxHash64

source§

fn default() -> XxHash64

Returns the “default value” for a type. Read more
source§

impl FixedOutput for XxHash64

source§

fn finalize_into(self, out: &mut Output<Self>)

Consume value and write result into provided array.
source§

fn finalize_fixed(self) -> GenericArray<u8, Self::OutputSize>

Retrieve result and consume the hasher instance.
source§

impl Hasher for XxHash64

source§

fn finish(&self) -> u64

Returns the hash value for the values written so far. Read more
source§

fn write(&mut self, bytes: &[u8])

Writes some data into this Hasher. Read more
1.3.0 · source§

fn write_u8(&mut self, i: u8)

Writes a single u8 into this hasher.
1.3.0 · source§

fn write_u16(&mut self, i: u16)

Writes a single u16 into this hasher.
1.3.0 · source§

fn write_u32(&mut self, i: u32)

Writes a single u32 into this hasher.
1.3.0 · source§

fn write_u64(&mut self, i: u64)

Writes a single u64 into this hasher.
1.26.0 · source§

fn write_u128(&mut self, i: u128)

Writes a single u128 into this hasher.
1.3.0 · source§

fn write_usize(&mut self, i: usize)

Writes a single usize into this hasher.
1.3.0 · source§

fn write_i8(&mut self, i: i8)

Writes a single i8 into this hasher.
1.3.0 · source§

fn write_i16(&mut self, i: i16)

Writes a single i16 into this hasher.
1.3.0 · source§

fn write_i32(&mut self, i: i32)

Writes a single i32 into this hasher.
1.3.0 · source§

fn write_i64(&mut self, i: i64)

Writes a single i64 into this hasher.
1.26.0 · source§

fn write_i128(&mut self, i: i128)

Writes a single i128 into this hasher.
1.3.0 · source§

fn write_isize(&mut self, i: isize)

Writes a single isize into this hasher.
source§

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
source§

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 more
source§

impl OutputSizeUser for XxHash64

§

type OutputSize = UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>

Size of the output in bytes.
source§

fn output_size() -> usize

Return output size in bytes.
source§

impl PartialEq for XxHash64

source§

fn eq(&self, other: &XxHash64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Update for XxHash64

source§

fn update(&mut self, data: &[u8])

Update state using the provided data.
source§

fn chain(self, data: impl AsRef<[u8]>) -> Self
where Self: Sized,

Digest input data in a chained manner.
source§

impl Copy for XxHash64

source§

impl HashMarker for XxHash64

source§

impl StructuralPartialEq for XxHash64