pub trait InterruptHandler {
    // Required method
    fn allocate_and_set_handler(val: Self) -> u8;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl InterruptHandler for extern "cdecl" fn(state: &mut InterruptAllSavedState)

source§

impl InterruptHandler for extern "x86-interrupt" fn(frame: InterruptStackFrame64)

Implementors§