(&self)
| 268 | } |
| 269 | |
| 270 | pub fn monitor_backends(&self) -> impl Iterator<Item = &Backend> { |
| 271 | std::iter::once(&self.default_backend) |
| 272 | .chain(self.backends.iter()) |
| 273 | .filter(|backend| backend.check_upstream) |
| 274 | } |
| 275 | |
| 276 | fn url(&self, _cls: &Classification, req_path: &Path, context: &Backend) -> Url { |
| 277 | let mut url = context.provider.clone(); |
nothing calls this directly
no outgoing calls
no test coverage detected