pub struct Meter {
times: [f64; 10],
avg: f64,
index: usize,
}Expand description
The meter.
Fields§
§times: [f64; 10]Track last 60 timestamps.
avg: f64Average sample time in microseconds.
index: usizeIndex of next time to update.
pub struct Meter {
times: [f64; 10],
avg: f64,
index: usize,
}The meter.
times: [f64; 10]Track last 60 timestamps.
avg: f64Average sample time in microseconds.
index: usizeIndex of next time to update.