(&mut self)
| 1368 | } |
| 1369 | |
| 1370 | fn protocol_stream_active(&mut self) -> Result<bool> { |
| 1371 | let stdio = self |
| 1372 | .protocol_stdio |
| 1373 | .as_ref() |
| 1374 | .context("WASIX runtime does not export protocol stream state")?; |
| 1375 | Ok(stdio |
| 1376 | .protocol_stream_active |
| 1377 | .call(&mut self.store) |
| 1378 | .context("pgl_protocol_stream_active")? |
| 1379 | != 0) |
| 1380 | } |
| 1381 | |
| 1382 | fn start_protocol(&mut self) -> Result<()> { |
| 1383 | if self.started { |