pub type task_func_t = Option<unsafe extern "C" fn(wrk: *mut worker, priv_: *mut c_void)>;
enum task_func_t { None, Some(unsafe extern "C" fn(_: *mut worker, _: *mut c_void)), }
No value.
Some value of type T.
T