pub type RegisterThreadCallback = Option<unsafe extern "C" fn(threadName: *const c_char, stackBase: *mut c_void) -> *mut ProfilingStack>;

Aliased Type§

enum RegisterThreadCallback {
    None,
    Some(unsafe extern "C" fn(_: *const i8, _: *mut c_void) -> *mut ProfilingStack),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const i8, _: *mut c_void) -> *mut ProfilingStack)

Some value of type T.