本文简要介绍rust语言中 std::hash::Hasher.write
的用法。
用法
fn write(&mut self, bytes: &[u8])
将一些数据写入此 Hasher
。
例子
use std::collections::hash_map::DefaultHasher;
use std::hash::Hasher;
let mut hasher = DefaultHasher::new();
let data = [0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef];
hasher.write(&data);
println!("Hash is {:x}!", hasher.finish());
相关用法
- Rust Hasher.finish用法及代码示例
- Rust Hasher用法及代码示例
- 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-lang.org大神的英文原创作品 std::hash::Hasher.write。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。