(self, scope: Scope, receive: Receive, send: Send)
| 445 | raise NoMatchFound(name, path_params) |
| 446 | |
| 447 | async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 448 | await self.app(scope, receive, send) |
| 449 | |
| 450 | def __eq__(self, other: Any) -> bool: |
| 451 | return isinstance(other, Mount) and self.path == other.path and self.app == other.app |