cef_auth_callback_t

Type Alias cef_auth_callback_t 

Source
pub type cef_auth_callback_t = _cef_auth_callback_t;
Expand description

Callback structure used for asynchronous continuation of authentication requests.

NOTE: This struct is allocated DLL-side.

Aliased Type§

#[repr(C)]
pub struct cef_auth_callback_t { pub base: _cef_base_ref_counted_t, pub cont: Option<unsafe extern "C" fn(*mut _cef_auth_callback_t, *const _cef_string_utf16_t, *const _cef_string_utf16_t)>, pub cancel: Option<unsafe extern "C" fn(*mut _cef_auth_callback_t)>, }

Fields§

§base: _cef_base_ref_counted_t

Base structure.

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

Continue the authentication request.

§cancel: Option<unsafe extern "C" fn(*mut _cef_auth_callback_t)>

Cancel the authentication request.