(&self, bufs: &[IoSlice], offset: u64)
| 515 | #[cfg(not(any(target_os = "ios", target_os = "macos", target_os = "redox")))] |
| 516 | #[inline] |
| 517 | fn write_vectored_at(&self, bufs: &[IoSlice], offset: u64) -> io::Result<usize> { |
| 518 | Ok(pwritev(self, bufs, offset)?) |
| 519 | } |
| 520 | |
| 521 | #[cfg(not(any(target_os = "ios", target_os = "macos", target_os = "redox")))] |
| 522 | #[inline] |
no test coverage detected