Type Alias esp_idf_sys::intr_handler_t

source ·
pub type intr_handler_t = Option<unsafe extern "C" fn(arg1: *mut c_void)>;
Expand description

Callback type of the interrupt handler

Aliased Type§

enum intr_handler_t {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void))

Some value of type T.