pub trait StoreProxyInterface: Send + Sync {
type WriteItemResponseFut: Future<Output = Result<StoreWriteItemResult, Error>> + Send;
// Required method
fn write_item(&self, attempt: &Item) -> Self::WriteItemResponseFut;
}
pub trait StoreProxyInterface: Send + Sync {
type WriteItemResponseFut: Future<Output = Result<StoreWriteItemResult, Error>> + Send;
// Required method
fn write_item(&self, attempt: &Item) -> Self::WriteItemResponseFut;
}