You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/rust/src/stats.rs

25 lines
648 B
Rust

//! `NcStats`
use crate::Nc;
/// notcurses runtime statistics
pub type NcStats = crate::bindings::ffi::ncstats;
/// # `NcStats` Methods.
impl NcStats {
/// Allocates an NcStats object.
pub fn new(nc: &mut Nc) -> &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: &mut Nc) {
unsafe { crate::notcurses_stats(nc, self) }
}
/// Resets all cumulative stats (immediate ones are not reset).
pub fn reset(&mut self, nc: &mut Nc) {
unsafe { crate::notcurses_stats_reset(nc, self) }
}
}