positioned-io
positioned-io copied to clipboard
Read and write from offsets in Rust.
Would be nice to introduce such convenience methods so users don't have to deal with partial reads and writes. There are methods for this in standard library on unix-like platforms:...
Right now, the only `Slice` constructors require passing in an explicit offset; however, when working with `Cursor` or `SizeCursor`, it would be more natural to be able to 1) only...
It looks like windows implementation has a huge overhead. Let's discuss possible performance improvements! It seems like it should be possible to use `WriteFileEx` and completion API. This also gives...
Example: https://docs.rs/byteorder/1.3.4/byteorder/trait.ByteOrder.html#method.read_u48
It'd be nice if you if you could use this library when compiling to wasm. E.g., in `raf.rs`, it starts off with these imports: ``` #[cfg(windows)] use std::io::{Seek, SeekFrom}; #[cfg(unix)]...