Introduce event::Status in iced_native

This commit is contained in:
Héctor Ramón Jiménez 2020-11-11 23:54:59 +01:00
parent 73811c394a
commit 1db11ba69a
2 changed files with 23 additions and 2 deletions

View file

@ -35,6 +35,7 @@
#![deny(unused_results)]
#![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)]
pub mod event;
pub mod keyboard;
pub mod layout;
pub mod mouse;
@ -47,7 +48,6 @@ pub mod window;
mod clipboard;
mod element;
mod event;
mod hasher;
mod runtime;
mod user_interface;