-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
tokio: introduce I/O utility helpers #1203
Comments
I'm working on porting over One option is to copy over the functionality of |
Looks like |
I think it is good to define the EDIT: Opened #1301 |
Does I am currently using futures 0.3's |
The existing I/O utility helpers were deleted in #1164. New ones should be implemented.
The utility helpers will be implemented on
AsyncReadExt
andAsyncWriteExt
traits and will exist intokio::io
.Some helpers to add include, but are not limited to:
AsyncReadExt
read
read_to_end
read_to_string
read_exact
read_until
copy
AsyncWriteExt
write
write_all
flush
The text was updated successfully, but these errors were encountered: