pub trait AsyncStoreWrite: StoreBase {
// Required methods
fn insert(
&self,
key: Self::Key,
value: Self::Value,
) -> impl Future<Output = ()>;
fn delete(&self, key: Self::Key) -> impl Future<Output = bool>;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".