(
&mut self,
memory: &mut GuestMemory<'_>,
fd: types::Fd,
ciovs: types::CiovecArray,
)
| 259 | } |
| 260 | |
| 261 | async fn fd_write( |
| 262 | &mut self, |
| 263 | memory: &mut GuestMemory<'_>, |
| 264 | fd: types::Fd, |
| 265 | ciovs: types::CiovecArray, |
| 266 | ) -> Result<types::Size, Error> { |
| 267 | assert_ciovec_array_same(); |
| 268 | let result = Snapshot1::fd_write(self, memory, fd.into(), ciovs.cast()).await?; |
| 269 | Ok(result) |
| 270 | } |
| 271 | |
| 272 | async fn fd_pwrite( |
| 273 | &mut self, |
nothing calls this directly
no test coverage detected