(self)
| 437 | |
| 438 | impl<R: io::BufRead + io::Seek> Reader<R> { |
| 439 | pub fn commits(self) -> Commits<R> { |
| 440 | Commits { |
| 441 | header: self.header, |
| 442 | reader: self.inner, |
| 443 | } |
| 444 | } |
| 445 | |
| 446 | pub fn seek_to_offset(&mut self, index_file: &TxOffsetIndex, start_tx_offset: u64) -> Result<u64, IndexError> { |
| 447 | seek_to_offset(&mut self.inner, index_file, start_tx_offset) |
no outgoing calls