//! I/O traits, types, and error handling for `no_std` environments.
//!
//! This module provides safe implementations of [`Read`], [`Write`],
//! [`Cursor`], [`Error`], and [`ErrorKind`] that work without the
//! standard library.
pub use ;
/// A specialized [`Result`](core::result::Result) type for I/O operations.
pub type Result<T> = Result;
pub use ;
pub use Cursor;