summaryrefslogtreecommitdiffstats
path: root/third_party/rust/mio/src/event/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/mio/src/event/mod.rs')
-rw-r--r--third_party/rust/mio/src/event/mod.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/rust/mio/src/event/mod.rs b/third_party/rust/mio/src/event/mod.rs
new file mode 100644
index 0000000000..8e17f82ee5
--- /dev/null
+++ b/third_party/rust/mio/src/event/mod.rs
@@ -0,0 +1,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;