pub trait CacheRead {
// Required method
fn list_cache<'a>(
&'a self,
domain: &'a str,
) -> impl Future<Output = Result<Value>> + Send + 'a;
}Required Methods§
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".