#[repr(C)]pub struct _cef_load_handler_t {
pub base: cef_base_ref_counted_t,
pub on_loading_state_change: Option<unsafe extern "C" fn(self_: *mut _cef_load_handler_t, browser: *mut _cef_browser_t, isLoading: c_int, canGoBack: c_int, canGoForward: c_int)>,
pub on_load_start: Option<unsafe extern "C" fn(self_: *mut _cef_load_handler_t, browser: *mut _cef_browser_t, frame: *mut _cef_frame_t, transition_type: cef_transition_type_t)>,
pub on_load_end: Option<unsafe extern "C" fn(self_: *mut _cef_load_handler_t, browser: *mut _cef_browser_t, frame: *mut _cef_frame_t, httpStatusCode: c_int)>,
pub on_load_error: Option<unsafe extern "C" fn(self_: *mut _cef_load_handler_t, browser: *mut _cef_browser_t, frame: *mut _cef_frame_t, errorCode: cef_errorcode_t, errorText: *const cef_string_t, failedUrl: *const cef_string_t)>,
}Fields§
§base: cef_base_ref_counted_t§on_loading_state_change: Option<unsafe extern "C" fn(self_: *mut _cef_load_handler_t, browser: *mut _cef_browser_t, isLoading: c_int, canGoBack: c_int, canGoForward: c_int)>§on_load_start: Option<unsafe extern "C" fn(self_: *mut _cef_load_handler_t, browser: *mut _cef_browser_t, frame: *mut _cef_frame_t, transition_type: cef_transition_type_t)>§on_load_end: Option<unsafe extern "C" fn(self_: *mut _cef_load_handler_t, browser: *mut _cef_browser_t, frame: *mut _cef_frame_t, httpStatusCode: c_int)>§on_load_error: Option<unsafe extern "C" fn(self_: *mut _cef_load_handler_t, browser: *mut _cef_browser_t, frame: *mut _cef_frame_t, errorCode: cef_errorcode_t, errorText: *const cef_string_t, failedUrl: *const cef_string_t)>Trait Implementations§
Source§impl Clone for _cef_load_handler_t
impl Clone for _cef_load_handler_t
Source§fn clone(&self) -> _cef_load_handler_t
fn clone(&self) -> _cef_load_handler_t
Returns a copy 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_load_handler_t
impl Debug for _cef_load_handler_t
impl Copy for _cef_load_handler_t
Auto Trait Implementations§
impl Freeze for _cef_load_handler_t
impl RefUnwindSafe for _cef_load_handler_t
impl Send for _cef_load_handler_t
impl Sync for _cef_load_handler_t
impl Unpin for _cef_load_handler_t
impl UnwindSafe for _cef_load_handler_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