aboutsummaryrefslogtreecommitdiff
path: root/src/event/mod.rs
blob: 8e17f82ee55254fd46e5be720dc0cc03f3e0379e (plain)
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;