File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
//! This crate provides a number of core abstractions for writing asynchronous
4
4
//! code:
5
5
//!
6
- //! - [Futures](crate::future::Future ) are single eventual values produced by
6
+ //! - [Futures](crate::future) are single eventual values produced by
7
7
//! asynchronous computations. Some programming languages (e.g. JavaScript)
8
8
//! call this concept "promise".
9
- //! - [Streams](crate::stream::Stream ) represent a series of values
9
+ //! - [Streams](crate::stream) represent a series of values
10
10
//! produced asynchronously.
11
- //! - [Sinks](crate::sink::Sink ) provide support for asynchronous writing of
11
+ //! - [Sinks](crate::sink) provide support for asynchronous writing of
12
12
//! data.
13
13
//! - [Executors](crate::executor) are responsible for running asynchronous
14
14
//! tasks.
You can’t perform that action at this time.
0 commit comments