pub trait ImplCookieVisitor:
Clone
+ Sized
+ Rc {
// Required method
fn get_raw(&self) -> *mut _cef_cookie_visitor_t;
// Provided methods
fn visit(
&self,
cookie: Option<&Cookie>,
count: c_int,
total: c_int,
delete_cookie: Option<&mut c_int>,
) -> c_int { ... }
fn init_methods(object: &mut _cef_cookie_visitor_t) { ... }
}Required Methods§
fn get_raw(&self) -> *mut _cef_cookie_visitor_t
Provided Methods§
Sourcefn visit(
&self,
cookie: Option<&Cookie>,
count: c_int,
total: c_int,
delete_cookie: Option<&mut c_int>,
) -> c_int
fn visit( &self, cookie: Option<&Cookie>, count: c_int, total: c_int, delete_cookie: Option<&mut c_int>, ) -> c_int
See _cef_cookie_visitor_t::visit for more documentation.
fn init_methods(object: &mut _cef_cookie_visitor_t)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.