[go: up one dir, main page]

countme 1.0.3

Counts the number of live instances of types
Documentation

A library to quickly get the live/total/max counts of allocated instances.

#[derive(Default)]
struct Widget {
  _t: countme::Token<Self>,
}

impl countme::CountMe for Widget {
    fn store() -> &'static countme::Store {
        static S: countme::Store = countme::Store::new();
        &S
    }
}

let w1 = Widget::default();
let w2 = Widget::default();
let w3 = Widget::default();
drop(w1);

let counts = countme::get::<Widget>();
assert_eq!(counts.live, 2);
assert_eq!(counts.max, 3);
assert_eq!(counts.total, 3);