1 2 3 4 5 6 7
//! io_ext //! Provies methods to deal with primitive types from [`std::io::Read`] & [`std::io::Write`] mod read; pub use read::*; mod write; pub use write::*;