buffered_offset_reader
Rust crate for buffered reading of a file at arbitrary offsets.
Uses std::os::unix::fs::FileExt::read_at() on unix (aka pread())
or std::os::windows::fs::FileExt::seek_read() on windows to do thread-safe
reads of the underlying file.
Examples
use ;
use File;