rexer 0.1.2

Async I/O multiplexing library for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod bus;
pub mod lane;
pub mod map;
pub mod mux;

#[doc(inline)]
pub use bus::Bus;
#[doc(inline)]
pub use lane::{Lane, LaneRx, LaneTx};
#[doc(inline)]
pub use map::{Key, Map};
#[doc(inline)]
pub use mux::Mux;

#[cfg(feature = "util")]
pub mod util;