Iterator over all valid records in the WAL.
(self)
| 148 | |
| 149 | /// Iterator over all valid records in the WAL. |
| 150 | pub fn records(self) -> WalRecordIter { |
| 151 | WalRecordIter { reader: self } |
| 152 | } |
| 153 | |
| 154 | /// Current read offset in the file. |
| 155 | pub fn offset(&self) -> u64 { |
no outgoing calls