blob: 8e17f82ee55254fd46e5be720dc0cc03f3e0379e [file] [log] [blame]
//! 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;