pub trait Tabulate: Any + Sized {
    fn census() -> &'static Census;

    fn instances() -> u64
    where
        Self: 'static
, { ... } }
Expand description

Track the population of Self.

Required methods

Provided methods

Produces the number of extant instances of Self.

Implementors