pub type cef_string_visitor_t = _cef_string_visitor_t;Expand description
Implement this structure to receive string values asynchronously.
NOTE: This struct is allocated client-side.
Aliased Type§
#[repr(C)]pub struct cef_string_visitor_t {
pub base: _cef_base_ref_counted_t,
pub visit: Option<unsafe extern "C" fn(*mut _cef_string_visitor_t, *const _cef_string_utf16_t)>,
}Fields§
§base: _cef_base_ref_counted_tBase structure.
visit: Option<unsafe extern "C" fn(*mut _cef_string_visitor_t, *const _cef_string_utf16_t)>Method that will be executed.