Type Alias esp_idf_sys::http_event_handle_cb
source · pub type http_event_handle_cb = Option<unsafe extern "C" fn(evt: *mut esp_http_client_event_t) -> esp_err_t>;
Aliased Type§
enum http_event_handle_cb {
None,
Some(unsafe extern "C" fn(_: *mut esp_http_client_event) -> i32),
}
Variants§
None
No value.
Some(unsafe extern "C" fn(_: *mut esp_http_client_event) -> i32)
Some value of type T
.