pub trait KeyedStateStore<K: Hash>: StateStore<Key = K> { }
Expand description

A trait for state stores with one rate limiting state per key.

This is blanket-implemented by all StateStores with hashable (Eq + Hash + Clone) key associated types.

Implementors