Struct std::hash::SipHasher

1.0.0 · source ·
pub struct SipHasher(_);
👎Deprecated since 1.13.0: use std::collections::hash_map::DefaultHasher instead
Expand description

SipHash 2-4 的实现。

请参见:https://131002.net/siphash/

SipHash 是通用的哈希函数:它以良好的速度运行 (与 Spooky 和 City 竞争),并允许强大的 keyed 哈希。

这使您可以从强 RNG (例如 rand::os::OsRng) 中键入哈希表。

尽管 SipHash 算法通常被认为是强大的,但它并非旨在用于加密目的。 这样,此实现的所有加密用途都是 strongly discouraged

Implementations§

source§

impl SipHasher

const: unstable · source

pub fn new() -> SipHasher

👎Deprecated since 1.13.0: use std::collections::hash_map::DefaultHasher instead

创建一个新的 SipHasher,将两个初始键设置为 0.

const: unstable · source

pub fn new_with_keys(key0: u64, key1: u64) -> SipHasher

👎Deprecated since 1.13.0: use std::collections::hash_map::DefaultHasher instead

创建一个 SipHasher,该 SipHasher 从提供的键上退出。

Trait Implementations§

source§

impl Clone for SipHasher

source§

fn clone(&self) -> SipHasher

返回值的副本。 Read more
source§

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

source 执行复制分配。 Read more
source§

impl Debug for SipHasher

source§

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

使用给定的格式化程序格式化该值。 Read more
source§

impl Default for SipHasher

source§

fn default() -> SipHasher

返回类型的 “默认值”。 Read more
source§

impl Hasher for SipHasher

source§

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

将一些数据写入此 HasherRead more
source§

fn write_str(&mut self, s: &str)

🔬This is a nightly-only experimental API. (hasher_prefixfree_extras #96762)
将单个 str 写入此哈希器。 Read more
source§

fn finish(&self) -> u64

返回到目前为止写入的值的哈希值。 Read more
1.3.0 · source§

fn write_u8(&mut self, i: u8)

将单个 u8 写入此哈希器。
1.3.0 · source§

fn write_u16(&mut self, i: u16)

将单个 u16 写入此哈希器。
1.3.0 · source§

fn write_u32(&mut self, i: u32)

将单个 u32 写入此哈希器。
1.3.0 · source§

fn write_u64(&mut self, i: u64)

将单个 u64 写入此哈希器。
1.26.0 · source§

fn write_u128(&mut self, i: u128)

将单个 u128 写入此哈希器。
1.3.0 · source§

fn write_usize(&mut self, i: usize)

将单个 usize 写入此哈希器。
1.3.0 · source§

fn write_i8(&mut self, i: i8)

将单个 i8 写入此哈希器。
1.3.0 · source§

fn write_i16(&mut self, i: i16)

将单个 i16 写入此哈希器。
1.3.0 · source§

fn write_i32(&mut self, i: i32)

将单个 i32 写入此哈希器。
1.3.0 · source§

fn write_i64(&mut self, i: i64)

将单个 i64 写入此哈希器。
1.26.0 · source§

fn write_i128(&mut self, i: i128)

将单个 i128 写入此哈希器。
1.3.0 · source§

fn write_isize(&mut self, i: isize)

将单个 isize 写入此哈希器。
source§

fn write_length_prefix(&mut self, len: usize)

🔬This is a nightly-only experimental API. (hasher_prefixfree_extras #96762)
将长度前缀写入此哈希器,作为无前缀的一部分。 Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

fn clone_into(&self, target: &mut T)

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。