-
Notifications
You must be signed in to change notification settings - Fork 342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Async std::os::unix::fs::FileExt read_at/write_at #576
Comments
Yes! :) We haven't quite finished the |
I want to try my hand here. Organizationally, does this get added to src/os/windows/fs.rs and src/os/unix/fs.rs? |
vlovich
added a commit
to vlovich/async-std
that referenced
this issue
Jan 30, 2021
Addresses issue async-rs#576 to add pwrite/pread support to async_std for parity with std & tokio.
Draft
vlovich
added a commit
to vlovich/async-std
that referenced
this issue
Feb 2, 2021
Addresses issue async-rs#576 to add pwrite/pread support to async_std for parity with std & tokio.
vlovich
added a commit
to vlovich/async-std
that referenced
this issue
Feb 2, 2021
Addresses issue async-rs#576 to add pwrite/pread support to async_std for parity with std & tokio.
vlovich
added a commit
to vlovich/async-std
that referenced
this issue
Feb 2, 2021
Addresses issue async-rs#576 to add pwrite/pread support to async_std for parity with std & tokio.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi folks,
I was curious whether async-std would be interested in an async port of
std::os::unix::fs::FileExt
. I'm writing a service right now that'd benefit from such a thing -- currently I've been doing it myself by using std::os::unix::fs::FileExt::read_at withspawn_blocking
, but it'd be neat to be included in async-std.If there's interest in this, I could try my hand at a PR.
The text was updated successfully, but these errors were encountered: