pub trait BitSeek {
    fn seek(&mut self, pos: BitSeekFrom) -> BitCursorResult<(u64, u64)>;

    fn rewind(&mut self) -> BitCursorResult<()> { ... }
}

Required Methods

Provided Methods

Implementors