Trait cached::CachedAsync[][src]

pub trait CachedAsync<K, V> {
    fn get_or_set_with<'life0, 'async_trait, F, Fut>(
        &'life0 mut self,
        k: K,
        f: F
    ) -> Pin<Box<dyn Future<Output = &mut V> + Send + 'async_trait>>
    where
        V: Send,
        F: FnOnce() -> Fut + Send,
        Fut: Future<Output = V> + Send,
        F: 'async_trait,
        Fut: 'async_trait,
        'life0: 'async_trait,
        Self: 'async_trait
;
fn try_get_or_set_with<'life0, 'async_trait, F, Fut, E>(
        &'life0 mut self,
        k: K,
        f: F
    ) -> Pin<Box<dyn Future<Output = Result<&mut V, E>> + Send + 'async_trait>>
    where
        V: Send,
        F: FnOnce() -> Fut + Send,
        Fut: Future<Output = Result<V, E>> + Send,
        F: 'async_trait,
        Fut: 'async_trait,
        E: 'async_trait,
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementations on Foreign Types

Implementors