pub trait Tabulate: Any + Sized { fn census() -> &'static Census; fn instances() -> u64 where Self: 'static, { ... } }
Track the population of Self.
Self
Produces the number of extant instances of Self.