[][src]Trait cookie_factory::Skip

pub trait Skip: Write {
    fn skip(self, s: usize) -> Result<Self, GenError>
    where
        Self: Sized
; }

Trait for Write types that allow skipping over the data

Required methods

fn skip(self, s: usize) -> Result<Self, GenError> where
    Self: Sized

Loading content...

Implementations on Foreign Types

impl<'_> Skip for &'_ mut [u8][src]

Loading content...

Implementors

impl<'a> Skip for Cursor<&'a mut [u8]>[src]

Loading content...