diff options
author | 2020-11-11 23:54:59 +0100 | |
---|---|---|
committer | 2020-11-11 23:54:59 +0100 | |
commit | 1db11ba69a3183924a1f4cae91031f4c5051b6dc (patch) | |
tree | c0f06dfb1a8c40601270abce69bd26ddceb36287 /native/src/lib.rs | |
parent | 73811c394a39c3816c67bffd2cf7d7a93c8803a9 (diff) | |
download | iced-1db11ba69a3183924a1f4cae91031f4c5051b6dc.tar.gz iced-1db11ba69a3183924a1f4cae91031f4c5051b6dc.tar.bz2 iced-1db11ba69a3183924a1f4cae91031f4c5051b6dc.zip |
Introduce `event::Status` in `iced_native`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index 067e3c0a..d1252eaf 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -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; |