Trait KeyValueStore

Source
pub trait KeyValueStore: ReadableKeyValueStore + WritableKeyValueStore { }
Expand description

A key-value store that can perform both read and write operations.

This trait combines the capabilities of ReadableKeyValueStore and WritableKeyValueStore, providing a full interface for stores that can handle complex batches with journaling support.

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§