1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Traits, helpers, and type definitions for core I/O functionality. //! //! The module contains a number of common things you'll need when doing input //! and output. The most core part of this module is the [`Read`] and [`Write`] //! traits, which provide the most general interface for reading and writing //! input and output. mod read; mod seek; mod write; pub use self::{ read::Read, seek::{Seek, SeekFrom}, write::Write, };