Skip to main content

CacheRead

Trait CacheRead 

Source
pub trait CacheRead {
    // Required method
    fn list_cache<'a>(
        &'a self,
        domain: &'a str,
    ) -> impl Future<Output = Result<Value>> + Send + 'a;
}

Required Methods§

Source

fn list_cache<'a>( &'a self, domain: &'a str, ) -> impl Future<Output = Result<Value>> + Send + 'a

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§