pub trait Statistics<'a> {
    type StatsOut;

    // Required method
    fn statistics(&'a self) -> Self::StatsOut;
}

Required Associated Types§

Required Methods§

source

fn statistics(&'a self) -> Self::StatsOut

Implementors§