pub trait HashGen<S> {
    fn hash1(gen: Self) -> S;
    fn hash2(gen: Self) -> [S; 2];
    fn hash3(gen: Self) -> [S; 3];
    fn hash4(gen: Self) -> [S; 4];
}
Expand description

Deterministic hash generator

Required Methods§

deterministic hash, output 1-dim

deterministic hash, output 2-dim

deterministic hash, output 3-dim

deterministic hash, output 4-dim

Implementations on Foreign Types§

Implementors§