wstd/io/
mod.rs

1//! Async IO abstractions.
2
3mod copy;
4mod cursor;
5mod empty;
6mod read;
7mod seek;
8mod stdio;
9mod streams;
10mod write;
11
12pub use crate::runtime::AsyncPollable;
13pub use copy::*;
14pub use cursor::*;
15pub use empty::*;
16pub use read::*;
17pub use seek::*;
18pub use stdio::*;
19pub use streams::*;
20pub use write::*;
21
22/// The error type for I/O operations.
23///
24pub use std::io::Error;
25
26/// A specialized Result type for I/O operations.
27///
28pub use std::io::Result;