[][src]Type Definition governor::state::keyed::DashMapStateStore

type DashMapStateStore<K> = DashMap<K, InMemoryState>;

A concurrent, thread-safe and fairly performant hashmap based on DashMap.

Trait Implementations

impl<K: Hash + Eq + Clone> ShrinkableKeyedStateStore<K> for DashMapStateStore<K>[src]

impl<K: Hash + Eq + Clone> StateStore for DashMapStateStore<K>[src]

type Key = K

The type of key that the state store can represent.