pub trait QPS {
    fn qps(&self, total: u64);
    fn time(&self, total: u64);
    fn cost(&self);
}

Required Methods

Implementations on Foreign Types

Implementors