pub trait WithError {
type Error: KeyValueStoreError;
}Expand description
Define an associated KeyValueStoreError.
Required Associated Types§
Sourcetype Error: KeyValueStoreError
type Error: KeyValueStoreError
The error type.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
Source§impl WithError for InactiveStore
impl WithError for InactiveStore
type Error = InactiveStoreError
Source§impl WithError for LimitedTestMemoryStore
Available on with_testing only.
impl WithError for LimitedTestMemoryStore
Available on
with_testing only.type Error = MemoryStoreError
Source§impl WithError for MemoryDatabase
impl WithError for MemoryDatabase
type Error = MemoryStoreError
Source§impl WithError for MemoryStore
impl WithError for MemoryStore
type Error = MemoryStoreError
Source§impl<C> WithError for ViewContainer<C>
Available on with_testing only.
impl<C> WithError for ViewContainer<C>
Available on
with_testing only.