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