summaryrefslogtreecommitdiffstats
path: root/native/src/metrics.rs
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 /native/src/metrics.rs
parentef056d84890e745010675e70f734f882f89356c2 (diff)
downloadiced-2c6bfdbc8c2262c3550fa16d4472e29d73077956.tar.gz
iced-2c6bfdbc8c2262c3550fa16d4472e29d73077956.tar.bz2
iced-2c6bfdbc8c2262c3550fa16d4472e29d73077956.zip
Implement debug view and load system fonts
Diffstat (limited to 'native/src/metrics.rs')
-rw-r--r--native/src/metrics.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/native/src/metrics.rs b/native/src/metrics.rs
deleted file mode 100644
index 7c344b9b..00000000
--- a/native/src/metrics.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-use std::time;
-
-/// A bunch of metrics about an Iced application.
-#[derive(Debug, Clone, Copy)]
-pub struct Metrics {
- pub startup_time: time::Duration,
- pub update_time: time::Duration,
- pub view_time: time::Duration,
- pub renderer_output_time: time::Duration,
- pub message_count: usize,
-}