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