[][src]Trait sqs_lambda::cache::Cache

pub trait Cache<E> {
    fn get<'life0, 'async_trait, CA: Cacheable + Send + Sync + 'static>(
        &'life0 mut self,
        cacheable: CA
    ) -> Pin<Box<dyn Future<Output = Result<CacheResponse, E>> + Send + 'async_trait>>
    where
        CA: 'async_trait,
        'life0: 'async_trait,
        Self: 'async_trait
;
fn store<'life0, 'async_trait>(
        &'life0 mut self,
        identity: Vec<u8>
    ) -> Pin<Box<dyn Future<Output = Result<(), E>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

fn get<'life0, 'async_trait, CA: Cacheable + Send + Sync + 'static>(
    &'life0 mut self,
    cacheable: CA
) -> Pin<Box<dyn Future<Output = Result<CacheResponse, E>> + Send + 'async_trait>> where
    CA: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 

fn store<'life0, 'async_trait>(
    &'life0 mut self,
    identity: Vec<u8>
) -> Pin<Box<dyn Future<Output = Result<(), E>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl Cache<()> for NopCache[src]

impl Cache<Arc<dyn Error + 'static + Sync + Send>> for RedisCache[src]

Loading content...