pub type intr_handler_t = Option<unsafe extern "C" fn(_: *mut c_void)>;
Callback type of the interrupt handler
enum intr_handler_t { None, Some(unsafe extern "C" fn(_: *mut c_void)), }
No value.
Some value of type T.
T