StoreEntry

Trait StoreEntry 

Source
pub trait StoreEntry<'a> {
    type Key;
    type Value;
}
Expand description

StoreEntry establishes a common interface for entries within a key-value store.

Required Associated Types§

Implementations on Foreign Types§

Source§

impl<'a, K, V> StoreEntry<'a> for Entry<'a, K, V>

Source§

type Key = K

Source§

type Value = V

Source§

impl<'a, K, V> StoreEntry<'a> for Entry<'a, K, V>

Source§

type Key = K

Source§

type Value = V

Implementors§