cef_dll_sys

Type Alias cef_callback_t

Source
pub type cef_callback_t = _cef_callback_t;
Expand description

Generic callback structure used for asynchronous continuation.

Aliased Type§

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_t

Base 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.