pub trait Cache<K, V> {
    fn get<'life0, 'life1, 'async_trait>(
        &'life0 self,
        k: &'life1 K
    ) -> Pin<Box<dyn Future<Output = Result<Option<V>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; fn set<'life0, 'async_trait>(
        &'life0 self,
        k: K,
        v: V
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn delete<'life0, 'life1, 'async_trait>(
        &'life0 self,
        k: &'life1 K
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors