notcurses/rust/src/stats.rs

25 lines
678 B
Rust
Raw Normal View History

2020-12-05 02:48:55 +00:00
//! `NcStats`
use crate::Notcurses;
/// notcurses runtime statistics
2020-12-05 17:55:10 +00:00
pub type NcStats = crate::bindings::ffi::ncstats;
2020-12-05 02:48:55 +00:00
/// # `NcStats` Methods.
impl NcStats {
/// Allocates an NcStats object.
pub fn new<'a>(nc: &'a Notcurses) -> &'a mut Self {
unsafe { &mut *crate::notcurses_stats_alloc(nc) }
}
/// Acquires an atomic snapshot of the Notcurses object's stats.
pub fn stats(&mut self, nc: &Notcurses) {
unsafe { crate::notcurses_stats(nc, self) }
}
/// Resets all cumulative stats (immediate ones are not reset).
pub fn reset(&mut self, nc: &mut Notcurses) {
unsafe { crate::notcurses_stats_reset(nc, self) }
}
}