maycoon_core/app/diagnostics.rs
1/// Contains diagnostics data for the application.
2#[derive(Debug, Copy, Clone, PartialEq, Eq, Default)]
3pub struct Diagnostics {
4 /// The updates since the last second. Use `updates_per_sec` for the average updates per second.
5 pub updates: usize,
6 /// The average updates per second.
7 pub updates_per_sec: usize,
8}