pub type FmAsyncCallback = unsafe extern "C" fn(result: *mut c_void, error: *const c_char, ctx: *mut c_void);Expand description
3-argument async callback used by the async_api thunks in Async.swift.
resultNon-null on success; semantics are thunk-specific (opaque pointer or C string).errorNon-null null-terminated UTF-8 error message on failure.ctxOpaque context pointer fromAsyncCompletion::create().