Trait HashOne

Source
pub trait HashOne {
    // Required method
    fn hash_one<T: Hash>(k: u64, v: T) -> u64;
}
Expand description

Hash with seed

Required Methods§

Source

fn hash_one<T: Hash>(k: u64, v: T) -> u64

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§