Skip to main content

StoreBase

Trait StoreBase 

Source
pub trait StoreBase {
    type Key;
    type Value;
}

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<K, V> StoreBase for MemoryStore<K, V>

Source§

type Key = K

Source§

type Value = V