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
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".