pub trait PrecomputedHash {
    fn precomputed_hash(&self) -> u32;
}
Expand description

A trait to expose a precomputed hash for a type.

Required Methods

Return the precomputed hash for this item.

Implementations on Foreign Types

Implementors