pub trait ClientWithStats: Client + Stats { // Required method fn to_client(self: Arc<Self>) -> Arc<dyn Client>; }
Client that also emits Stats
Client
Stats