(&self, buf: &mut [u8], offset: u64)
| 477 | |
| 478 | #[inline] |
| 479 | fn read_exact_at(&self, buf: &mut [u8], offset: u64) -> io::Result<()> { |
| 480 | FileExt::read_exact_at(&*self.as_filelike_view::<std::fs::File>(), buf, offset) |
| 481 | } |
| 482 | |
| 483 | #[cfg(not(any(target_os = "ios", target_os = "macos", target_os = "redox")))] |
| 484 | #[inline] |
nothing calls this directly
no test coverage detected