pub trait Skip: Write {
// Required method
fn skip(s: WriteContext<Self>, sz: usize) -> GenResult<Self>
where Self: Sized;
}Expand description
Trait for Write types that allow skipping over the data
pub trait Skip: Write {
// Required method
fn skip(s: WriteContext<Self>, sz: usize) -> GenResult<Self>
where Self: Sized;
}Trait for Write types that allow skipping over the data