(self, scope: Scope, receive: Receive, send: Send)
| 507 | raise NoMatchFound(name, path_params) |
| 508 | |
| 509 | async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 510 | await self.app(scope, receive, send) |
| 511 | |
| 512 | def __eq__(self, other: Any) -> bool: |
| 513 | return isinstance(other, Host) and self.host == other.host and self.app == other.app |