Current read offset in the file.
(&self)
| 153 | |
| 154 | /// Current read offset in the file. |
| 155 | pub fn offset(&self) -> u64 { |
| 156 | self.offset |
| 157 | } |
| 158 | |
| 159 | fn read_exact(&mut self, buf: &mut [u8]) -> Result<()> { |
| 160 | self.file.read_exact(buf)?; |
no outgoing calls
no test coverage detected