1//! Async traits and types used for Io operations. 2 3#![forbid(unsafe_code)] 4 5pub mod bytes; 6#[cfg(feature = "runtime")] 7pub mod io; 8#[cfg(feature = "runtime-uring")] 9pub mod io_uring; 10#[cfg(feature = "runtime")] 11pub mod net;