[go: up one dir, main page]

mio 1.1.1

Lightweight non-blocking I/O.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Readiness event types and utilities.

#[allow(clippy::module_inception)]
mod event;
mod events;
mod source;

pub use self::event::Event;
pub use self::events::{Events, Iter};
pub use self::source::Source;