Get the filename for a segment starting with `offset` within this repository.
(&self, offset: u64)
| 101 | /// Get the filename for a segment starting with `offset` within this |
| 102 | /// repository. |
| 103 | pub fn segment_path(&self, offset: u64) -> SegmentFile { |
| 104 | self.root.segment(offset) |
| 105 | } |
| 106 | |
| 107 | /// Determine the size on disk as the sum of the sizes of all segments, as |
| 108 | /// well as offset indexes. |
no test coverage detected