pub trait Key<K> {
    fn hash(&self) -> u64;
    fn key(&self) -> &K;
}
Expand description

A shard key

Required Methods

Implementors