Trait cookie_factory::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]>