compio-io 0.10.0-rc.2

IO traits for completion based async IO
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! IO related utilities functions for ease of use.
mod copy;
pub use copy::*;

mod take;
pub use take::Take;

mod null;
pub use null::{Null, null};

mod repeat;
pub use repeat::{Repeat, repeat};

mod internal;
pub(crate) use internal::*;

pub mod split;
pub use split::Splittable;