pub type apr_thread_start_t = Option<unsafe extern "C" fn(arg1: *mut apr_thread_t, arg2: *mut c_void) -> *mut c_void>;Expand description
The prototype for any APR thread worker functions.
Aliased Type§
pub enum apr_thread_start_t {
None,
Some(unsafe extern "C" fn(*mut apr_thread_t, *mut c_void) -> *mut c_void),
}