(&self, id: WebSocketHostId)
| 529 | |
| 530 | fn tcp_connection_mut(&mut self, id: TcpConnectionId) -> NetResult<&mut TcpConnection> { |
| 531 | get_slot_mut(&mut self.tcp_connections, id.0, "tcp connection") |
| 532 | } |
| 533 | |
| 534 | fn udp_endpoint(&self, id: UdpEndpointId) -> NetResult<&UdpEndpoint> { |
| 535 | get_slot(&self.udp_endpoints, id.0, "udp endpoint") |
| 536 | } |
no test coverage detected