(&self, buf: &mut String, offset: u64)
| 499 | |
| 500 | #[inline] |
| 501 | fn read_to_string_at(&self, buf: &mut String, offset: u64) -> io::Result<usize> { |
| 502 | read_to_string_at(&self.as_filelike_view::<std::fs::File>(), buf, offset) |
| 503 | } |
| 504 | |
| 505 | #[inline] |
| 506 | fn write_at(&self, buf: &[u8], offset: u64) -> io::Result<usize> { |
nothing calls this directly
no test coverage detected