pub type httpd_free_ctx_fn_t = Option<unsafe extern "C" fn(ctx: *mut c_void)>;
Expand description

@brief Prototype for freeing context data (if any) @param[in] ctx object to free

Aliased Type§

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