pub trait PersistenceStorageRemove<K>: PersistenceStorageOperation {
    fn remove<'life0, 'life1, 'async_trait>(
        &'life0 self,
        key: &'life1 K
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }
Expand description

Persistence Storage remove functions

Required Methods

Remove an entry by key.

Implementors