2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-04 15:36:40 +00:00
async-std/docs/src
bors[bot] 33ff41df48
Merge #224
224: Re-export IO traits from futures r=stjepang a=stjepang

Sorry for the big PR!

Instead of providing our own traits `async_std::io::{Read, Write, Seek, BufRead}`, we now re-export `futures::io::{AsyncRead, AsyncWrite, AsyncSeek, AsyncRead}`. While re-exporting we rename them to strip away the "Async" prefix.

The documentation will display the contents of the original traits from the `futures` crate together with our own extension methods. There's a note in the docs saying the extenion methods become available only when `async_std::prelude::*` is imported.

Our extension traits are re-exported into the prelude, but are marked with `#[doc(hidden)]` so they're completely invisible to users.

The benefit of this is that people can now implement traits from `async_std::io` for their types and stay compatible with `futures`. This will also simplify some trait bounds in our APIs - for example, things like `where Self: futures_io::AsyncRead`.

At the same time, I cleaned up some trait bounds in our stream interfaces, but haven't otherwise fiddled with them much.

I intend to follow up with another PR doing the same change for `Stream` so that we re-export the stream trait from `futures`.

Co-authored-by: Stjepan Glavina <stjepang@gmail.com>
2019-09-22 13:50:53 +00:00
..
concepts Fix more compilation errors in the book 2019-09-22 12:03:56 +02:00
images added diagrams 2019-08-15 11:36:39 +02:00
overview Fix typo in stability-guarantees.md (#136) 2019-08-31 16:15:26 +02:00
patterns Fix book tests 2019-08-25 04:34:41 -07:00
security Fix book tests 2019-08-25 04:34:41 -07:00
tutorial Merge #224 2019-09-22 13:50:53 +00:00
concepts.md small typos and edits in first few pages 2019-08-17 07:03:48 +10:00
glossary.md Copyedits for the book 2019-08-17 00:41:37 -05:00
introduction.md Copyedits for the book 2019-08-17 00:41:37 -05:00
patterns.md Add small patterns library 2019-08-12 21:17:21 +02:00
SUMMARY.md Book fixes 2019-08-16 20:04:14 +02:00