pub trait InterruptAttributorProxyInterface: Send + Sync {
type GetInterruptInfoResponseFut: Future<Output = Result<InterruptAttributorGetInterruptInfoResult, Error>> + Send;
// Required method
fn get_interrupt_info(
&self,
payload: &InterruptAttributorGetInterruptInfoRequest,
) -> Self::GetInterruptInfoResponseFut;
}