pub trait StoreProxyInterface: Send + Sync {
type WriteItemResponseFut: Future<Output = Result<StoreWriteItemResult, Error>> + Send;
// Required method
fn write_item(&self, attempt: &Item) -> Self::WriteItemResponseFut;
}Required Associated Types§
type WriteItemResponseFut: Future<Output = Result<StoreWriteItemResult, Error>> + Send
Required Methods§
fn write_item(&self, attempt: &Item) -> Self::WriteItemResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".