pub trait InterruptAttributorProxyInterface: Send + Sync {
type GetInterruptInfoResponseFut: Future<Output = Result<InterruptAttributorGetInterruptInfoResult, Error>> + Send;
// Required method
fn get_interrupt_info(
&self,
payload: &InterruptAttributorGetInterruptInfoRequest,
) -> Self::GetInterruptInfoResponseFut;
}Required Associated Types§
type GetInterruptInfoResponseFut: Future<Output = Result<InterruptAttributorGetInterruptInfoResult, Error>> + Send
Required Methods§
fn get_interrupt_info( &self, payload: &InterruptAttributorGetInterruptInfoRequest, ) -> Self::GetInterruptInfoResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".