#[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(self_: *mut _cef_end_tracing_callback_t, tracing_file: *const cef_string_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.
Fields§
§base: cef_base_ref_counted_tBase structure.
on_end_tracing_complete: Option<unsafe extern "C" fn(self_: *mut _cef_end_tracing_callback_t, tracing_file: *const cef_string_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|.
Trait Implementations§
Source§impl Clone for _cef_end_tracing_callback_t
impl Clone for _cef_end_tracing_callback_t
Source§fn clone(&self) -> _cef_end_tracing_callback_t
fn clone(&self) -> _cef_end_tracing_callback_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for _cef_end_tracing_callback_t
impl Debug for _cef_end_tracing_callback_t
impl Copy for _cef_end_tracing_callback_t
Auto Trait Implementations§
impl Freeze for _cef_end_tracing_callback_t
impl RefUnwindSafe for _cef_end_tracing_callback_t
impl Send for _cef_end_tracing_callback_t
impl Sync for _cef_end_tracing_callback_t
impl Unpin for _cef_end_tracing_callback_t
impl UnsafeUnpin for _cef_end_tracing_callback_t
impl UnwindSafe for _cef_end_tracing_callback_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more