pub trait EventSender: Sync + Send { // Required method fn send_event( &self, event: Event, ) -> BoxFuture<'_, Option<Result<(), SendError<Event>>>>; }
A trait to allow sending statistics events