pub type cef_callback_t = _cef_callback_t;Expand description
Generic callback structure used for asynchronous continuation.
NOTE: This struct is allocated DLL-side.
Aliased Type§
#[repr(C)]pub struct cef_callback_t {
pub base: _cef_base_ref_counted_t,
pub cont: Option<unsafe extern "C" fn(*mut _cef_callback_t)>,
pub cancel: Option<unsafe extern "C" fn(*mut _cef_callback_t)>,
}Fields§
§base: _cef_base_ref_counted_tBase structure.
cont: Option<unsafe extern "C" fn(*mut _cef_callback_t)>Continue processing.
cancel: Option<unsafe extern "C" fn(*mut _cef_callback_t)>Cancel processing.