Trait kvcache::Cache

source ·
pub trait Cache {
    // Required method
    async fn get<K: IntoIterator<Item = RedisKey> + Send>(
        &self,
        keys: K
    ) -> Result<Vov>;
}

Required Methods§

source

async fn get<K: IntoIterator<Item = RedisKey> + Send>( &self, keys: K ) -> Result<Vov>

Object Safety§

This trait is not object safe.

Implementors§