//! The util module rexports some tools from mio in order to facilitate handling timeouts.
use slab;
/// A handle to a specific timeout.
pub use Timeout;
/// Used to identify some timed-out event.
pub use Token;
/// A Slab allocator for associating tokens to data.
pub type Slab<T> = Slab;
/// TcpStream underlying the WebSocket
pub use TcpStream;