pub type ExceptionHandler = Option<unsafe extern "C" fn(excep: *mut ERRF_ExceptionInfo, regs: *mut CpuRegisters)>;Expand description
Exception handler type, necessarily an ARM function that does not return.
Aliased Type§
pub enum ExceptionHandler {
None,
Some(unsafe extern "C" fn(*mut ERRF_ExceptionInfo, *mut CpuRegisters)),
}Variants§
None
No value.
Some(unsafe extern "C" fn(*mut ERRF_ExceptionInfo, *mut CpuRegisters))
Some value of type T.