1
2
3
4
5
6
7
8
//! The util module rexports some tools from mio in order to facilitate handling timeouts.

/// Used to identify some timed-out event.
pub use mio::Token;
/// A handle to a specific timeout.
pub use mio::Timeout;
/// A Slab allocator for associating tokens to data.
pub use mio::util::Slab;