pub trait AggregateAndUploadProxyInterface: Send + Sync {
type AggregateAndUploadMetricEventsResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn aggregate_and_upload_metric_events(
&self,
) -> Self::AggregateAndUploadMetricEventsResponseFut;
}