Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
3991aa5d3338019d58599b378f8fae430916ab3d
/
.
/
crates
/
mio
/
src
/
event
/
mod.rs
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
;