Skip to main content

apr_thread_start_t

Type Alias apr_thread_start_t 

Source
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),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut apr_thread_t, *mut c_void) -> *mut c_void)

Some value of type T.