pub trait Skip {
// Required method
fn skip(&mut self, n: u64) -> Result<()>;
}Expand description
Type which supports skipping a number of bytes.
Similar in spirit to std::io::Seek but only allows
uni-directional movement.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".