| 47 | } |
| 48 | |
| 49 | pub struct AuthMiddleware<S> { |
| 50 | // This is special: We need this to avoid lifetime issues. |
| 51 | service: Rc<S>, |
| 52 | } |
| 53 | |
| 54 | impl<S> Service<ServiceRequest> for AuthMiddleware<S> |
| 55 | where |
nothing calls this directly
no outgoing calls
no test coverage detected