Files
tokio/src/util/mod.rs
T

10 lines
266 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`][FutureExt]. However, this will
//! include over time.
mod future;
pub use self::future::FutureExt;