pub type cef_completion_callback_t = _cef_completion_callback_t;Expand description
Generic callback structure used for asynchronous completion.
NOTE: This struct is allocated client-side.
Aliased Type§
#[repr(C)]pub struct cef_completion_callback_t {
pub base: _cef_base_ref_counted_t,
pub on_complete: Option<unsafe extern "C" fn(*mut _cef_completion_callback_t)>,
}Fields§
§base: _cef_base_ref_counted_tBase structure.
on_complete: Option<unsafe extern "C" fn(*mut _cef_completion_callback_t)>Method that will be called once the task is complete.