(&self, _cls: &Classification, req_path: &Path, context: &Backend)
| 274 | } |
| 275 | |
| 276 | fn url(&self, _cls: &Classification, req_path: &Path, context: &Backend) -> Url { |
| 277 | let mut url = context.provider.clone(); |
| 278 | url.set_path(&req_path.to_string_lossy()); |
| 279 | debug!(?url); |
| 280 | url |
| 281 | } |
| 282 | |
| 283 | pub fn decision(&self, req_path: &Path, head_req: bool) -> CacheDecision { |
| 284 | // let req_path_trim = req_path.replace("//", "/"); |
no outgoing calls
no test coverage detected