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

    fn rewind(&mut self) -> Result<(), BitCursorError> { ... }
}

Required Methods

Provided Methods

Implementors