Type Alias esp_idf_sys::http_data_cb

source ·
pub type http_data_cb = Option<unsafe extern "C" fn(arg1: *mut http_parser, at: *const c_char, length: usize) -> c_int>;

Aliased Type§

enum http_data_cb {
    None,
    Some(unsafe extern "C" fn(_: *mut http_parser, _: *const i8, _: usize) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut http_parser, _: *const i8, _: usize) -> i32)

Some value of type T.