skip to the jth position
(&mut self, seek: SeekFrom)
| 292 | |
| 293 | //skip to the jth position |
| 294 | fn seek(&mut self, seek: SeekFrom) -> io::Result<u64> { |
| 295 | self.cursor.seek(seek) |
| 296 | } |
| 297 | |
| 298 | //Read k bytes from the object and return. |
| 299 | fn read(&mut self, bytes: Option<usize>) -> Option<Vec<u8>> { |
no test coverage detected