pub trait PackableStats {
    // Required method
    fn pack(&self, packer: RowPacker<'_>);
}
Expand description

A trait that abstracts over user-facing statistics objects, used by spawn_statistics_scraper.

Required Methods§

source

fn pack(&self, packer: RowPacker<'_>)

Pack self into the Row.

Implementors§