[][src]Trait governor::state::keyed::KeyedStateStore

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

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

impl<T, K: Hash> KeyedStateStore<K> for T where
    T: StateStore<Key = K>,
    K: Eq + Clone + Hash
[src]

Loading content...