mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-20 00:00:08 +02:00
16 lines
408 B
Rust
16 lines
408 B
Rust
//! 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.
|
|
//!
|
|
//! [`FutureExt`]: trait.FutureExt.html
|
|
//! [`StreamExt`]: trait.StreamExt.html
|
|
|
|
mod enumerate;
|
|
mod future;
|
|
mod stream;
|
|
|
|
pub use self::future::FutureExt;
|
|
pub use self::stream::StreamExt;
|