(&self, offset: u64)
| 300 | } |
| 301 | |
| 302 | fn segment_file_path(&self, offset: u64) -> Option<String> { |
| 303 | Some(self.segment_path(offset).0.to_string_lossy().into_owned()) |
| 304 | } |
| 305 | |
| 306 | fn open_segment_reader(&self, offset: u64) -> io::Result<Self::SegmentReader> { |
| 307 | let path = self.segment_path(offset); |
nothing calls this directly
no test coverage detected