Files
tokio/src/executor/mod.rs
T

9 lines
197 B
Rust
Raw Normal View History

//! Task execution utilities.
//!
//! This module only contains `current_thread`, an executor for multiplexing
//! many tasks on a single thread.
pub mod current_thread;
mod scheduler;
mod sleep;