1//! Readiness event types and utilities. 2 3#[allow(clippy::module_inception)] 4mod event; 5mod events; 6 7pub use self::event::Event; 8pub use self::events::{Events, Iter};