Service must be Cloneable.
| 61 | // Service that will modify the request before it is sent. |
| 62 | #[derive(Clone)] // Service must be Cloneable. |
| 63 | struct RequestModifyingService<S> { |
| 64 | inner: S, |
| 65 | } |
| 66 | |
| 67 | impl<S, B> Service<hyper::Request<B>> for RequestModifyingService<S> |
| 68 | where |
nothing calls this directly
no outgoing calls
no test coverage detected