summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2019-11-05 21:46:37 +0100
committerLibravatar GitHub <noreply@github.com>2019-11-05 21:46:37 +0100
commitae6156f779c24beaabf43ea6110d3ce38e34a998 (patch)
tree9545408530437eb780ac73c600f7d40968803786 /src
parentda2717c74dbe3e1123ff41de345a409c1afc2f18 (diff)
parent0157121038987feb6c2ea3066a21ce25e689888e (diff)
downloadiced-ae6156f779c24beaabf43ea6110d3ce38e34a998.tar.gz
iced-ae6156f779c24beaabf43ea6110d3ce38e34a998.tar.bz2
iced-ae6156f779c24beaabf43ea6110d3ce38e34a998.zip
Merge pull request #38 from hecrj/feature/performance-metrics
Debug view
Diffstat (limited to '')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1bcdada2..da108804 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -5,7 +5,7 @@ mod platform;
pub use platform::*;
pub trait Application {
- type Message;
+ type Message: std::fmt::Debug;
fn update(&mut self, message: Self::Message);