Type Alias esp_idf_sys::httpd_work_fn_t

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

@brief Prototype of the HTTPD work function Please refer to httpd_queue_work() for more details. @param[in] arg The arguments for this work function

Aliased Type§

enum httpd_work_fn_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.