pub trait SkipOne: Codec {
    fn skip<R: Read + Seek>(&self, r: &mut R) -> Result<()>;
}
Expand description

trait to implement to skip a single item at the current position

Required Methods§

assuming r is at the start of an item, advance r to the end

Implementors§