pub trait InterruptAttributorLocalServerHandler<___T: Transport = Channel> {
// Required method
fn get_interrupt_info(
&mut self,
request: Request<GetInterruptInfo, ___T>,
responder: Responder<GetInterruptInfo, ___T>,
) -> impl Future<Output = ()>;
}Expand description
A server handler for the InterruptAttributor protocol.
See InterruptAttributor for more details.
Required Methods§
fn get_interrupt_info( &mut self, request: Request<GetInterruptInfo, ___T>, responder: Responder<GetInterruptInfo, ___T>, ) -> impl Future<Output = ()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".