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