#[cfg(test)]
mod tests;
mod button;
mod key; mod kind; mod mouse; mod pointer; mod wheel;
crate::structural_mods! { _mods {
#[cfg_attr(nightly_doc, doc(cfg(feature = "event")))]
pub use super::{
key::_all::*,
kind::*,
mouse::*,
pointer::*,
wheel::*,
};
}
}