(&mut self, bytes: bytes::Bytes)
| 619 | |
| 620 | impl wasmtime_wasi::HostOutputStream for RemoteIo { |
| 621 | fn write(&mut self, bytes: bytes::Bytes) -> StreamResult<()> { |
| 622 | self.sender.send(bytes.to_vec()).unwrap(); |
| 623 | |
| 624 | Ok(()) |
| 625 | } |
| 626 | |
| 627 | fn flush(&mut self) -> StreamResult<()> { |
| 628 | Ok(()) |
no test coverage detected