Iterator over all valid records in the mmap'd segment.
(self)
| 212 | |
| 213 | /// Iterator over all valid records in the mmap'd segment. |
| 214 | pub fn records(self) -> MmapRecordIter { |
| 215 | MmapRecordIter { reader: self } |
| 216 | } |
| 217 | |
| 218 | /// Current read offset. |
| 219 | pub fn offset(&self) -> usize { |
no outgoing calls