Type Alias x86_64::structures::idt::HandlerFunc

source ·
pub type HandlerFunc = extern "x86-interrupt" fn(_: InterruptStackFrame);
Available on crate feature abi_x86_interrupt only.
Expand description

A handler function for an interrupt or an exception without error code.

This type alias is only usable with the abi_x86_interrupt feature enabled.

Trait Implementations§

source§

impl HandlerFuncType for HandlerFunc

source§

fn to_virt_addr(self) -> VirtAddr

Get the virtual address of the handler function.