pub type cef_unresponsive_process_callback_t = _cef_unresponsive_process_callback_t;Expand description
Callback structure for asynchronous handling of an unresponsive process.
NOTE: This struct is allocated DLL-side.
Aliased Type§
#[repr(C)]pub struct cef_unresponsive_process_callback_t {
pub base: _cef_base_ref_counted_t,
pub wait: Option<unsafe extern "C" fn(*mut _cef_unresponsive_process_callback_t)>,
pub terminate: Option<unsafe extern "C" fn(*mut _cef_unresponsive_process_callback_t)>,
}Fields§
§base: _cef_base_ref_counted_tBase structure.
wait: Option<unsafe extern "C" fn(*mut _cef_unresponsive_process_callback_t)>Reset the timeout for the unresponsive process.
terminate: Option<unsafe extern "C" fn(*mut _cef_unresponsive_process_callback_t)>Terminate the unresponsive process.