(&mut self)
| 1541 | } |
| 1542 | |
| 1543 | fn protocol_input_remaining(&mut self) -> Result<i32> { |
| 1544 | let host_remaining = self.io.available(&mut self.store)?; |
| 1545 | if host_remaining > 0 { |
| 1546 | return Ok(host_remaining); |
| 1547 | } |
| 1548 | self.protocol |
| 1549 | .pq_buffer_remaining_data |
| 1550 | .call(&mut self.store) |
| 1551 | .context("pq_buffer_remaining_data") |
| 1552 | } |
| 1553 | } |
| 1554 | |
| 1555 | fn process_wasix_runtime(engine: &Engine) -> Result<Arc<WasixProcessRuntime>> { |
no test coverage detected