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

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

Required methods

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

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

Loading content...

Implementors

impl Cache for NopCache[src]

impl Cache for RedisCache[src]

Loading content...