macro_rules! Census {
    () => { ... };
}
Expand description

Generates a correct implementation of Tabulate::census.

Use like:

use type_census::{Census, Instance, Tabulate};
 
impl<T: 'static> Tabulate for Foo<T> {
    Census!();
}