Skip to main content

InterruptAttributorServerHandler

Trait InterruptAttributorServerHandler 

Source
pub trait InterruptAttributorServerHandler<___T: Transport = Channel> {
    // Required method
    fn get_interrupt_info(
        &mut self,
        request: Request<GetInterruptInfo, ___T>,
        responder: Responder<GetInterruptInfo, ___T>,
    ) -> impl Future<Output = ()> + Send;
}
Expand description

A server handler for the InterruptAttributor protocol.

See InterruptAttributor for more details.

Required Methods§

Source

fn get_interrupt_info( &mut self, request: Request<GetInterruptInfo, ___T>, responder: Responder<GetInterruptInfo, ___T>, ) -> impl Future<Output = ()> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§