mycelium_util/io/prelude.rs
1//! The Mycelium I/O Prelude
2//!
3//! The purpose of this module is to alleviate imports of many common I/O traits
4//! by adding a glob import to the top of I/O heavy modules:
5//!
6//! ```
7//! # #![allow(unused_imports)]
8//! use mycelium_util::io::prelude::*;
9//! ```
10pub use super::{BufRead, Read, Seek, Write};