Skip to main content

cef_end_tracing_callback_t

Type Alias cef_end_tracing_callback_t 

Source
pub type cef_end_tracing_callback_t = _cef_end_tracing_callback_t;
Expand description

Implement this structure to receive notification when tracing has completed. The functions of this structure will be called on the browser process UI thread.

NOTE: This struct is allocated client-side.

Aliased Type§

#[repr(C)]
pub struct cef_end_tracing_callback_t { pub base: _cef_base_ref_counted_t, pub on_end_tracing_complete: Option<unsafe extern "C" fn(*mut _cef_end_tracing_callback_t, *const _cef_string_utf16_t)>, }

Fields§

§base: _cef_base_ref_counted_t

Base structure.

§on_end_tracing_complete: Option<unsafe extern "C" fn(*mut _cef_end_tracing_callback_t, *const _cef_string_utf16_t)>

Called after all processes have sent their trace data. |tracing_file| is the path at which tracing data was written. The client is responsible for deleting |tracing_file|.