pub trait Keyer:
Clone
+ Send
+ Sync
+ 'static {
// Required method
fn cache_key<B>(&self, req: &Request<B>) -> String;
}Expand description
A trait for generating cache keys from HTTP requests.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".