pub type DefaultBuildHasher = BuildHasherDefault<DefaultHasher>;Expand description
Default hasher type alias 默认哈希器类型别名
Use BuildHasherDefault<DefaultHasher> to support const fn new().
Note: This hasher has no random seed. If untrusted external input is accepted as a key,
it may be subject to hash collision attacks (HashDoS).
使用 BuildHasherDefault<DefaultHasher> 以支持 const fn new()。
注意:此哈希器没有随机种子,如果接受不可信的外部输入作为 key,
可能会受到哈希碰撞攻击(HashDoS)。
Aliased Type§
pub struct DefaultBuildHasher(/* private fields */);