pub trait DirectKeyValueStore: ReadableKeyValueStore + DirectWritableKeyValueStore { }
Expand description
A key-value store that can perform both read and direct write operations.
This trait combines the capabilities of ReadableKeyValueStore
and
DirectWritableKeyValueStore
, providing a full interface for stores
that can handle simplified batches directly without journaling.
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.