pub trait ReadSkipExt { // Required method fn skip(&mut self, dist: u64) -> Result<()>; }
Extension trait that adds a skip() method to Read instances.
skip()
Read
Read and discard a number of bytes.