| 567 | M: CacheManager, |
| 568 | K: Keyer, |
| 569 | { |
| 570 | inner: S, |
| 571 | manager: M, |
| 572 | keyer: K, |
| 573 | options: ServerCacheOptions, |
| 574 | metrics: Arc<CacheMetrics>, |
| 575 | } |
| 576 | |
| 577 | impl<S, ReqBody, ResBody, M, K> Service<Request<ReqBody>> |
| 578 | for ServerCacheService<S, M, K> |
| 579 | where |
| 580 | S: Service<Request<ReqBody>, Response = Response<ResBody>> |
| 581 | + Clone |
| 582 | + Send |
nothing calls this directly
no outgoing calls
no test coverage detected