Trait InterruptHandler

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

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

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

Source§

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

Implementors§