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

Generates a correct implementation of Tabulate::counter.

Use like:

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