(&self, buf: &[u8], offset: u64)
| 509 | |
| 510 | #[inline] |
| 511 | fn write_all_at(&self, buf: &[u8], offset: u64) -> io::Result<()> { |
| 512 | FileExt::write_all_at(&*self.as_filelike_view::<std::fs::File>(), buf, offset) |
| 513 | } |
| 514 | |
| 515 | #[cfg(not(any(target_os = "ios", target_os = "macos", target_os = "redox")))] |
| 516 | #[inline] |
no test coverage detected