本文简要介绍rust语言中 std::hash::Hash.hash
的用法。
用法
fn hash<H>(&self, state: &mut H) where H: Hasher,
将此值输入给定的 Hasher
。
例子
use std::collections::hash_map::DefaultHasher;
use std::hash::{Hash, Hasher};
let mut hasher = DefaultHasher::new();
7920.hash(&mut hasher);
println!("Hash is {:x}!", hasher.finish());
相关用法
- Rust Hash.hash_slice用法及代码示例
- Rust HashSet.get_or_insert_with用法及代码示例
- Rust HashMap.get用法及代码示例
- Rust HashMap.try_insert用法及代码示例
- Rust HashSet.insert用法及代码示例
- Rust HashSet.get_or_insert用法及代码示例
- Rust HashSet用法及代码示例
- Rust HashSet.is_superset用法及代码示例
- Rust HashSet.shrink_to用法及代码示例
- Rust HashMap.keys用法及代码示例
- Rust HashSet.with_hasher用法及代码示例
- Rust HashMap.iter用法及代码示例
- Rust HashMap.iter_mut用法及代码示例
- Rust HashMap.retain用法及代码示例
- Rust HashMap.with_capacity_and_hasher用法及代码示例
- Rust HashSet.with_capacity用法及代码示例
- Rust HashSet.difference用法及代码示例
- Rust HashMap.clear用法及代码示例
- Rust HashMap.reserve用法及代码示例
- Rust HashSet.try_reserve用法及代码示例
- Rust HashMap.with_hasher用法及代码示例
- Rust HashMap.into_keys用法及代码示例
- Rust HashSet.hasher用法及代码示例
- Rust HashMap.into_values用法及代码示例
- Rust HashMap.get_mut用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::hash::Hash.hash。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。