Function goto_offset_without_seek

Source
pub fn goto_offset_without_seek<T>(
    reader: T,
    cur_pos: &mut u64,
    position: u64,
) -> Result<u64>
where T: Read,
Expand description
  • Go to an offset without using seek. It’s achieved by using dummy reads.