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§

Required Methods§

source

fn write_item(&self, attempt: &Item) -> Self::WriteItemResponseFut

Implementors§