Trait kvdb::KeyValueDBHandler
source · [−]pub trait KeyValueDBHandler: Send + Sync {
fn open(&self, path: &Path) -> Result<Arc<dyn KeyValueDB>>;
}
Expand description
Generic key-value database handler. This trait contains one function open
.
When called, it opens database with a predefined config.