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