blob: 7c344b9be94f502a9cae976cac5c386ee646c782 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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,
}
|