Skip to main content

SearchableStore

Trait SearchableStore 

Source
pub trait SearchableStore<K: Ord, V>: SearchableStoreRead<K, V> + StoreWrite<K, V> { }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<K, V, T> SearchableStore<K, V> for T
where K: Ord, T: SearchableStoreRead<K, V> + StoreWrite<K, V>,