2018-03-30 11:50:02 -07:00
|
|
|
//! Utilities for working with Tokio.
|
|
|
|
|
//!
|
|
|
|
|
//! This module contains utilities that are useful for working with Tokio.
|
2018-09-07 18:43:03 -04:00
|
|
|
//! Currently, this only includes [`FutureExt`] and [`StreamExt`], but this
|
|
|
|
|
//! may grow over time.
|
2018-07-22 13:35:30 -07:00
|
|
|
//!
|
|
|
|
|
//! [`FutureExt`]: trait.FutureExt.html
|
2018-09-07 18:43:03 -04:00
|
|
|
//! [`StreamExt`]: trait.StreamExt.html
|
2018-03-30 11:50:02 -07:00
|
|
|
|
|
|
|
|
mod future;
|
2018-09-07 18:43:03 -04:00
|
|
|
mod stream;
|
2019-01-24 21:50:34 +02:00
|
|
|
mod enumerate;
|
2018-03-30 11:50:02 -07:00
|
|
|
|
|
|
|
|
pub use self::future::FutureExt;
|
2018-09-07 18:43:03 -04:00
|
|
|
pub use self::stream::StreamExt;
|