summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-03 04:39:11 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-03 04:39:11 +0100
commit2c6bfdbc8c2262c3550fa16d4472e29d73077956 (patch)
tree4428dea15c7ec8f9baa385927ce96264470d1915 /src
parentef056d84890e745010675e70f734f882f89356c2 (diff)
downloadiced-2c6bfdbc8c2262c3550fa16d4472e29d73077956.tar.gz
iced-2c6bfdbc8c2262c3550fa16d4472e29d73077956.tar.bz2
iced-2c6bfdbc8c2262c3550fa16d4472e29d73077956.zip
Implement debug view and load system fonts
Diffstat (limited to 'src')
-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);