bits_io/io/
bit_seek.rs

1use std::io::SeekFrom;
2
3pub trait BitSeek {
4    fn bit_seek(&mut self, pos: SeekFrom) -> std::io::Result<u64>;
5}