pub trait Keyer {
type Key;
// Required method
fn get_key(&self, request: &Request<Body>) -> Self::Key;
}Expand description
The trait for objects used to obtain cache keys. See BasicKeyer for default implementation
returning (http::Method, Uri).