pub trait Skip { // Required method fn skip(&mut self, n: u64) -> Result<()>; }
Type which supports skipping a number of bytes.
Similar in spirit to std::io::Seek but only allows uni-directional movement.
std::io::Seek
Skip over n consecutive bytes.
n