Trait Skip

Source
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§

Source

fn skip(s: WriteContext<Self>, sz: usize) -> GenResult<Self>
where Self: Sized,

Implementations on Foreign Types§

Source§

impl Skip for &mut [u8]

Source§

fn skip( s: WriteContext<Self>, len: usize, ) -> Result<WriteContext<Self>, GenError>

Implementors§

Source§

impl Skip for Cursor<&mut [u8]>