Files
tokio/src/util/mod.rs
T

15 lines
393 B
Rust
Raw Normal View History

2018-03-30 11:50:02 -07:00
//! Utilities for working with Tokio.
//!
//! This module contains utilities that are useful for working with Tokio.
//! 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
//! [`StreamExt`]: trait.StreamExt.html
2018-03-30 11:50:02 -07:00
mod future;
mod stream;
2018-03-30 11:50:02 -07:00
pub use self::future::FutureExt;
pub use self::stream::StreamExt;